[issue11886] test_time.test_tzset() fails on x86 FreeBSD 7.2 3.x: AEST timezone called EST

2011-12-09 Thread Florent Xicluna
Florent Xicluna florent.xicl...@gmail.com added the comment: thank you for this fix. I agree a posteriori. -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue11886 ___

[issue13569] multiprocessing module: Process.start() fails with EOFError: pickle.PicklingError: Can't pickle type 'thread.lock': it's not found as thread.lock

2011-12-09 Thread Antoine Pitrou
Antoine Pitrou pit...@free.fr added the comment: I don't think it's the queue. Try removing the logger instead (or creating it in the child). -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue13569

[issue2979] use_builtin_types in xmlrpc.server

2011-12-09 Thread Roundup Robot
Roundup Robot devn...@psf.upfronthosting.co.za added the comment: New changeset b3c1a504ebc1 by Florent Xicluna in branch 'default': Closes #2979: add parameter 'use_builtin_types' to the SimpleXMLRPCServer. http://hg.python.org/cpython/rev/b3c1a504ebc1 -- nosy: +python-dev resolution:

[issue13543] shlex with string ending in space gives ValueError: No closing quotation

2011-12-09 Thread ekorn
ekorn jono...@gmail.com added the comment: https://github.com/ipython/ipython/issues/1109#issuecomment-3072571 It seems this was an IPython bug due to slight abuse of the shlex module. Closing as invalid; thanks for your help. -- resolution: - invalid status: open - closed

[issue13502] Documentation for Event.wait return value is either wrong or incomplete

2011-12-09 Thread R. David Murray
R. David Murray rdmur...@bitdance.com added the comment: set to True, either before the wait call or after the wait starts -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue13502 ___

[issue13543] shlex with string ending in space gives ValueError: No closing quotation

2011-12-09 Thread R. David Murray
R. David Murray rdmur...@bitdance.com added the comment: And just for your information, as far as I know *no one* knows what standard (or model) non-posix mode shlex is based on. -- ___ Python tracker rep...@bugs.python.org

[issue1757072] Zipfile robustness

2011-12-09 Thread R. David Murray
R. David Murray rdmur...@bitdance.com added the comment: Here's the patch: http://hg.python.org/cpython/rev/cc3255a707c7/ I thought I remembered getting it in to 2.7.2, but my memory is evidently wrong. It has been applied, but is not yet in the released version of 2.7. --

[issue13378] Change the variable nsmap from global to instance (xml.etree.ElementTree)

2011-12-09 Thread Florent Xicluna
Florent Xicluna florent.xicl...@gmail.com added the comment: Updated with documentation. Thank you for the review. I know this does not cover different namespaces in subtree. But this use case seems very specific. The user could find other means to achieve it. -- stage: patch review -

[issue13528] Rework performance FAQ

2011-12-09 Thread Roundup Robot
Roundup Robot devn...@psf.upfronthosting.co.za added the comment: New changeset eb30f2becb79 by Antoine Pitrou in branch '3.2': Issue #13528: rework the performance question in the programming FAQ http://hg.python.org/cpython/rev/eb30f2becb79 New changeset 9fe28f52eaaa by Antoine Pitrou in

[issue13528] Rework performance FAQ

2011-12-09 Thread Antoine Pitrou
Antoine Pitrou pit...@free.fr added the comment: Done. -- resolution: - fixed stage: patch review - committed/rejected status: open - closed ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue13528

[issue13570] Expose faster unicode-ascii functions in the C-API

2011-12-09 Thread Jesús Cea Avión
Changes by Jesús Cea Avión j...@jcea.es: -- nosy: +jcea ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue13570 ___ ___ Python-bugs-list mailing list

[issue13569] multiprocessing module: Process.start() fails with EOFError: pickle.PicklingError: Can't pickle type 'thread.lock': it's not found as thread.lock

2011-12-09 Thread Nikita Pchelin
Nikita Pchelin nikita.pche...@gmail.com added the comment: Hi Antoine, * If I don't pass a logger and do print statements instead, works like a charm. * If I getLogger() in the child instead, example fails with the same trace. However, according to this (

[issue13569] multiprocessing module: Process.start() fails with EOFError: pickle.PicklingError: Can't pickle type 'thread.lock': it's not found as thread.lock

2011-12-09 Thread Antoine Pitrou
Antoine Pitrou pit...@free.fr added the comment: If I getLogger() in the child instead, example fails with the same trace. That sounds rather unlikely. Are you sure you don't store the logger in your process' __init__ method? The __init__ method is called in the parent and the process

[issue13569] multiprocessing module: Process.start() fails with EOFError: pickle.PicklingError: Can't pickle type 'thread.lock': it's not found as thread.lock

2011-12-09 Thread Nikita Pchelin
Nikita Pchelin nikita.pche...@gmail.com added the comment: Are you sure you don't store the logger in your process' __init__ method? The __init__ method is called in the parent and the process instance is transfered to the child when you call start() on the process. To make sure we are on the

[issue1410680] Add 'surgical editing' to ConfigParser

2011-12-09 Thread Mathieu Pasquet
Mathieu Pasquet mathi...@mathieui.net added the comment: What is the state of that feature, as of today? -- nosy: +mathieui ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue1410680 ___

[issue13571] Backup files support in IDLE

2011-12-09 Thread maniram maniram
New submission from maniram maniram maniandra...@gmail.com: Automatically save files in IDLE's editor which are not saved to backup file(s) (perhaps in .idlerc) every minute. If IDLE crashes, save all files that are not saved to backup file(s) and then re-raise the error (like a finally

[issue13549] Incorrect nested list comprehension documentation

2011-12-09 Thread Terry J. Reedy
Terry J. Reedy tjre...@udel.edu added the comment: Showing both was the intent of my comment. Since I am about 60:40 on that, I was and am willing for you, having grabbed and pushed the issue, to drop the half-expanded version if you thought it better. With or without, we have improved this

[issue10364] IDLE: make .py default added extension on save

2011-12-09 Thread Terry J. Reedy
Changes by Terry J. Reedy tjre...@udel.edu: -- resolution: - duplicate status: open - closed superseder: - idle filename extension ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue10364 ___

[issue13521] Make dict.setdefault() atomic

2011-12-09 Thread John O'Connor
Changes by John O'Connor tehj...@gmail.com: -- nosy: +jcon ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue13521 ___ ___ Python-bugs-list mailing

[issue13521] Make dict.setdefault() atomic

2011-12-09 Thread maniram maniram
maniram maniram maniandra...@gmail.com added the comment: +1 for atomic and more robust -- nosy: +maniram.maniram ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue13521 ___

[issue13571] Backup files support in IDLE

2011-12-09 Thread maniram maniram
Changes by maniram maniram maniandra...@gmail.com: -- type: - feature request versions: +Python 3.2 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue13571 ___

[issue13378] Change the variable nsmap from global to instance (xml.etree.ElementTree)

2011-12-09 Thread Stefan Behnel
Changes by Stefan Behnel sco...@users.sourceforge.net: -- nosy: +effbot ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue13378 ___ ___

[issue13378] Change the variable nsmap from global to instance (xml.etree.ElementTree)

2011-12-09 Thread Stefan Behnel
Stefan Behnel sco...@users.sourceforge.net added the comment: Given that this is a major new feature for the serialiser in ElementTree, I think it's worth asking Fredrik for any comments. -- ___ Python tracker rep...@bugs.python.org

<    1   2