[issue22401] argparse: 'resolve' conflict handler damages the actions of the parent parser

2014-09-13 Thread paul j3
New submission from paul j3: When there's a conflict involving an argument that was added via 'parents', and the conflict handler is 'resolve', the action in the parent parser may be damaged, rendering that parent unsuitable for further use. In this example, 2 parents have the same '--config'

[issue21998] asyncio: a new self-pipe should be created in the child process after fork

2014-09-13 Thread Yury Selivanov
Yury Selivanov added the comment: It's not that it doesn't work after fork, right? Should we add a recipe with pid monitoring a self-pipe re-initialization? -- ___ Python tracker __

[issue20631] python readline module crashing on NULL access

2014-09-13 Thread Arfrever Frehtes Taifersar Arahesis
Changes by Arfrever Frehtes Taifersar Arahesis : -- nosy: +Arfrever ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscri

[issue20631] python readline module crashing on NULL access

2014-09-13 Thread Benjamin Peterson
Benjamin Peterson added the comment: Why does _py_get_history_length return a positive value if there's no line available? -- nosy: +benjamin.peterson ___ Python tracker ___ ___

[issue12916] Add inspect.splitdoc

2014-09-13 Thread Martin Panter
Martin Panter added the comment: Although it is not documented, inspect.getdoc() may return None instead of a documentation string. In patch 2, inspect.splitdoc() only accepts a string; perhaps it should also accept None? Otherwise you might have to use it like this: [summary, body] = splitdo

[issue22377] %Z in strptime doesn't match EST and others

2014-09-13 Thread Akira Li
Akira Li added the comment: Without %z (utc offset) strptime returns a naive datetime object that is interpreted as utc or local time usually. It might explain why %Z tries to match only utc and the local timezone names. -- ___ Python tracker

[issue22377] %Z in strptime doesn't match EST and others

2014-09-13 Thread Akira Li
Akira Li added the comment: if PEP 431 is implemented (or anything that gives access to zoneinfo) then strptime could extend the list of timezones it accepts (utc + local timezone names) to include names from the tz database: import pytz # $ pip install pytz {tzname for tz in map(pytz.time

[issue22400] Stable API broken on Windows for PyUnicode_*

2014-09-13 Thread Jeremy Kloth
New submission from Jeremy Kloth: When using any of the PyUnicode_* functions in an extension module compiled with Py_LIMITED_API defined, the resulting module cannot be imported due to: ImportError: DLL load failed: The specified procedure could not be found. Upon investigation, the error is

[issue22384] Tk.report_callback_exception kills process when run with pythonw.exe

2014-09-13 Thread Terry J. Reedy
Terry J. Reedy added the comment: In a pythonw process, stdout and stderr are initially None unless and until changed. (This is something we need to do for the Idle process itself.) Writing to None generates an AttributeError. Uncaught exceptions stop the Python process. The patch works, fo

[issue22398] Tools/msi enhancements for 2.7

2014-09-13 Thread Berker Peksag
Changes by Berker Peksag : -- stage: patch review -> resolved ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: h

[issue22220] Ttk extensions test failure

2014-09-13 Thread Serhiy Storchaka
Changes by Serhiy Storchaka : -- resolution: -> works for me stage: test needed -> resolved status: open -> closed ___ Python tracker ___ ___

[issue22384] Tk.report_callback_exception kills process when run with pythonw.exe

2014-09-13 Thread Serhiy Storchaka
Changes by Serhiy Storchaka : -- keywords: +needs review nosy: +terry.reedy ___ Python tracker ___ ___ Python-bugs-list mailing list U

[issue22388] Unify style of "Contributed by" notes

2014-09-13 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: If don't make these editions now, inconsistent lines will provoke inconsistency in future additions. -- ___ Python tracker ___ __

[issue22388] Unify style of "Contributed by" notes

2014-09-13 Thread R. David Murray
R. David Murray added the comment: Yep, that's exactly the logic I used for "trailing parenthetical sentence" versus "trailing parenthetical paragraph": whether or not what was being referenced was a single paragraph for a block of paragraphs. I went through and made 3.4 consistent, so there sho

[issue22395] test_pathlib error for complex symlinks on Windows

2014-09-13 Thread Justin Foo
Justin Foo added the comment: The failing tests were: * test_complex_symlinks_absolute * test_complex_symlinks_relative * test_complex_symlinks_relative_dot_dot for both PathTest and WindowsPathTest, via inheritance from the _BasePathTest class. -- ___