[issue7391] Re-title the "Using Backslash to Continue Statements" anti-idiom

2009-11-25 Thread Neil Cerutti
Neil Cerutti added the comment: Yes, I know. That's why I feel it should not be labeled an anti-idiom, as it currently seems to be. -- status: pending -> open ___ Python tracker <http://bugs.python.or

[issue7391] Re-title the "Using Backslash to Continue Statements" anti-idiom

2009-11-24 Thread Neil Cerutti
New submission from Neil Cerutti : This "anti-idiom" is in the Python HOWTOs->Idioms and Anti-Idioms The current title is "Using Backslash to Continue Statements" However, using the line continuation character won't cause mysterious problems in statements, but onl

[issue1604] collections.deque.__init__ doesn't initialize

2007-12-12 Thread Neil Cerutti
New submission from Neil Cerutti: Passing an interable to the __init__ method of an existing deque appends those elements, rather than reinitializing the deque with the items. This is contrary to how list.__init__ works. test_deque.py verifies the (possibly) incorrect behavior