Message58162
> try:
> ....
> except os.error, err:
> if WindowsError is not None or not isinstance(err, WindowsError):
> raise # Pretend we didn't catch it
> pass # Ignore it
All the double negations are hurting when I try to understand above
conditions. How about (in addition to the WindowsError name check):
if WindowsError and isinstance(err, WindowsError):
pass # ignore
raise |
|
| Date |
User |
Action |
Args |
| 2007-12-03 22:25:22 | draghuram | set | spambayes_score: 0.0765607 -> 0.0765607 recipients:
+ draghuram, gvanrossum, facundobatista, amaury.forgeotdarc, christian.heimes, ianare |
| 2007-12-03 22:25:22 | draghuram | link | issue1545 messages |
| 2007-12-03 22:25:22 | draghuram | create | |
|