[issue13477] tarfile module should have a command line

2013-03-07 Thread Ankur Ankan
Ankur Ankan added the comment: > +parser.add_argument('--gz', '--gunzip', '--gzip', '--tgz', '-z', > +'--ungzip', action = 'store_true', > +help = 'gz compression') > +parser.add_argument('--bz2', '--bzip2', '--tbz2', '--tbz', '-- tb2', >

[issue1186900] nntplib shouldn't raise generic EOFError

2013-03-07 Thread Ankur Ankan
Changes by Ankur Ankan : -- nosy: +Ankur.Ankan ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.py

[issue17384] test_logging failures on Windows

2013-03-07 Thread Ezio Melotti
New submission from Ezio Melotti: test_logging is failing on some buildbots: test_logging::AMD64 Windows7 SP1 3.x a0b750 42970c 9aafc0 test_logging::x86 Windows Server 2003 [SB] 3.x 9aafc0 6b69c1 c261b7 test_logging::x86 XP-4 3.x 6b69c1 c261b7 test_logging::x86 XP-5 3.x c261b7

[issue17384] test_logging failures on Windows

2013-03-07 Thread Ezio Melotti
Changes by Ezio Melotti : -- components: +Tests type: enhancement -> behavior ___ Python tracker ___ ___ Python-bugs-list mailing list

[issue17385] Use deque instead of list the threading.Condition waiter queue

2013-03-07 Thread Raymond Hettinger
New submission from Raymond Hettinger: Condition variables implement a FIFO queue for waiting threads. The current implementation uses a regular Python list but could use a deque instead. A wait() call appends a new waiter. A notify() call removes the oldest waiter; this is an O(n) operatio

[issue17327] Add PyDict_GetItemSetDefault() as C-API for dict.setdefault()

2013-03-07 Thread Stefan Behnel
Stefan Behnel added the comment: If you decide to refactor a well tested patch, you might want to give it another test run before committing it. Objects/dictobject.c: In function 'dict_setdefault': Objects/dictobject.c:2266:5: warning: passing argument 1 of 'PyDict_SetDefault' from incompatibl

[issue16669] Docstrings for namedtuple

2013-03-07 Thread Raymond Hettinger
Changes by Raymond Hettinger : -- resolution: -> rejected status: open -> closed ___ Python tracker ___ ___ Python-bugs-list mailing

[issue17327] Add PyDict_GetItemSetDefault() as C-API for dict.setdefault()

2013-03-07 Thread Stefan Behnel
Stefan Behnel added the comment: I'm totally ok with your changes, though. The only real difference is an aditional type check in the slot function path, and that's not going to make any difference right after the costly operation of unpacking python function arguments. -- __

<    1   2