Mark Dickinson <[email protected]> added the comment:

Nice shade of blue!  Just a couple of red spots that I'd prefer repainted, 
namely: (1) please put bodies of 'try:' and 'except:' on separate lines, and 
(2) please use 'except NameError' instead of a bare except.

And a couple of points that I think also applied to my patch:

- {s: 0 for s in _signals} could also be spelt dict.fromkeys(_signals, 0)

- I think dict(dc.traps) should be dc.traps.copy() instead.  I can't entirely 
see why it would matter, except that it's conceivable that dc.traps could by a 
dict subclass with its own copy method.

----------

_______________________________________
Python tracker <[email protected]>
<http://bugs.python.org/issue9136>
_______________________________________
_______________________________________________
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com

Reply via email to