This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author giampaolo.rodola
Recipients giampaolo.rodola
Date 2008-12-31.00:12:15
SpamBayes Score 0.0045368113
Marked as misclassified No
Message-id <1230682337.31.0.817794517816.issue4788@psf.upfronthosting.co.za>
In-reply-to
Content
From PEP-8:

> When catching exceptions, mention specific exceptions
> whenever possible instead of using a bare 'except:' clause.
> [...] 
> A bare 'except:' clause will catch SystemExit and KeyboardInterrupt
> exceptions, making it harder to interrupt a program with Control-C,
> and can disguise other problems.

The patch in attachment removes two bare "except" clauses used in ssl 
module.
History
Date User Action Args
2008-12-31 00:12:17giampaolo.rodolasetrecipients: + giampaolo.rodola
2008-12-31 00:12:17giampaolo.rodolasetmessageid: <1230682337.31.0.817794517816.issue4788@psf.upfronthosting.co.za>
2008-12-31 00:12:16giampaolo.rodolalinkissue4788 messages
2008-12-31 00:12:16giampaolo.rodolacreate