[issue2506] Add mechanism to diasable optimizations

2011-07-13 Thread Terry J. Reedy
Terry J. Reedy added the comment: Choose pydev if you want. Discussion there is *usually* (but definitely not always) more focused on implementation of uncontroversial changes. I am pretty much +-0 on the issue, though Jean-Paul's post seems to add to the + side arguments that might be persua

[issue2506] Add mechanism to diasable optimizations

2011-07-13 Thread Terry J. Reedy
Terry J. Reedy added the comment: Choose pydev if you want. Discussion there is *usually* (but definitely not always) more focused on implementation of uncontroversial changes. I am pretty much +-0 on the issue, though Jean-Paul's post seems to add to the + side arguments that might be persua

[issue2506] Add mechanism to diasable optimizations

2011-07-13 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- Removed message: http://bugs.python.org/msg140304 ___ Python tracker ___ ___ Python-bugs-list mailing li

[issue12549] test_platform test_mac_ver fails on Darwin x86_64

2011-07-13 Thread Davide Rizzo
Davide Rizzo added the comment: I first saw it failing on 3.3 while testing for another bug, then run the test on other versions including 2.7 and it always fails. System Python 2.6 does NOT fail, but it has no _mac_ver_xml(). This is a MacBook Pro 13" with Intel Core i5. ---

[issue12549] test_platform test_mac_ver fails on Darwin x86_64

2011-07-13 Thread Ned Deily
Ned Deily added the comment: Thanks for running that. I guess the significant difference is having an i5 processor. We'll need to fix it. -- assignee: ronaldoussoren -> ned.deily stage: -> needs patch ___ Python tracker

[issue1559549] ImportError needs attributes for module and file name

2011-07-13 Thread Brett Cannon
Brett Cannon added the comment: No, we don't need attribute_name as that is getting too specific. Your example is simply importing validmodule.name_with_typo which happens to possibly be an attribute on the module instead of another module or subpackage. -- __

[issue9592] Limitations in objects returned by multiprocessing Pool

2011-07-13 Thread STINNER Victor
STINNER Victor added the comment: A recent test_rapid_restart hang: [ 14/357] test_multiprocessing Timeout (1:00:00)! Thread 0xb18c4b70: File "/var/lib/buildslave/3.x.murray-gentoo-wide/build/Lib/threading.py", line 237 in wait File "/var/lib/buildslave/3.x.murray-gentoo-wide/build/Lib/que

[issue12550] regrtest: register SIGALRM signal using faulthandler

2011-07-13 Thread Roundup Robot
Roundup Robot added the comment: New changeset 39873557ff4f by Victor Stinner in branch 'default': Issue #12550: Add chain optional argument to faulthandler.register() http://hg.python.org/cpython/rev/39873557ff4f -- nosy: +python-dev ___ Python trac

[issue12550] regrtest: register SIGALRM signal using faulthandler

2011-07-13 Thread Roundup Robot
Roundup Robot added the comment: New changeset 30f91fbfc8b3 by Victor Stinner in branch 'default': Issue #12550: regrtest displays the Python traceback on SIGALRM or SIGUSR1 http://hg.python.org/cpython/rev/30f91fbfc8b3 -- ___ Python tracker

[issue12549] test_platform test_mac_ver fails on Darwin x86_64

2011-07-13 Thread Roundup Robot
Roundup Robot added the comment: New changeset 0a53a978a160 by Ned Deily in branch '2.7': Issue #12549: Correct test_platform to not fail when OS X returns 'x86_64' http://hg.python.org/cpython/rev/0a53a978a160 New changeset d050c8c9a3b3 by Ned Deily in branch '3.2': Issue #12549: Correct test_

[issue12549] test_platform test_mac_ver fails on Darwin x86_64

2011-07-13 Thread Ned Deily
Changes by Ned Deily : -- resolution: -> fixed stage: needs patch -> committed/rejected status: open -> closed ___ Python tracker ___ ___

[issue12536] lib2to3 BaseFix class creates un-needed loggers leading to refleaks

2011-07-13 Thread Roundup Robot
Roundup Robot added the comment: New changeset dd004e85e299 by Vinay Sajip in branch 'default': Closes #12536: Unused logger removed from lib2to3. http://hg.python.org/cpython/rev/dd004e85e299 -- nosy: +python-dev resolution: -> fixed stage: -> committed/rejected status: open -> close

[issue12555] PEP 3151 implementation

2011-07-13 Thread Antoine Pitrou
New submission from Antoine Pitrou : I now have a working PEP 3151 implementation, working on various platforms (tested on Linux, Windows, FreeBSD and OpenIndiana buildbots). The implementation has all the semantic changes and additions in PEP 3151. It still lacks the deprecation mechanism men

[issue12555] PEP 3151 implementation

2011-07-13 Thread Antoine Pitrou
Changes by Antoine Pitrou : -- hgrepos: +41 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.

[issue12555] PEP 3151 implementation

2011-07-13 Thread Antoine Pitrou
Changes by Antoine Pitrou : -- keywords: +patch Added file: http://bugs.python.org/file22647/cac46b853098.diff ___ Python tracker ___

[issue12555] PEP 3151 implementation

2011-07-13 Thread Antoine Pitrou
Changes by Antoine Pitrou : Removed file: http://bugs.python.org/file22647/cac46b853098.diff ___ Python tracker ___ ___ Python-bugs-list maili

[issue12551] Provide data for TLS channel binding

2011-07-13 Thread Antoine Pitrou
Antoine Pitrou added the comment: Thank you, this looks mostly good. A couple of nits: +#if OPENSSL_VERSION_NUMBER >= 0x0090500fL +# define HAVE_OPENSSL_FINISHED 1 +#else +# undef HAVE_OPENSSL_FINNISHED +#endif you have a typo in the #undef, also it would be more logical to have # define HAV

[issue12555] PEP 3151 implementation

2011-07-13 Thread Nadeem Vawda
Changes by Nadeem Vawda : -- nosy: +nadeem.vawda ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.py

[issue12555] PEP 3151 implementation

2011-07-13 Thread Antoine Pitrou
Changes by Antoine Pitrou : Added file: http://bugs.python.org/file22648/d305942126b6.diff ___ Python tracker ___ ___ Python-bugs-list mailing

[issue12555] PEP 3151 implementation

2011-07-13 Thread Antoine Pitrou
Antoine Pitrou added the comment: (I'm sorry for the filenames. I'm using the "create patch" feature in the hope that a code review is possible through the Rietveld integration :-)) -- ___ Python tracker

[issue12554] Failed imports clean up module, but not sub modules

2011-07-13 Thread Eric Snow
Eric Snow added the comment: But it is curious that the submodules were added to sys.modules even though the package failed to import. -- nosy: +ericsnow ___ Python tracker ___

[issue665194] datetime-RFC2822 roundtripping

2011-07-13 Thread R. David Murray
R. David Murray added the comment: OK, here is a new patch proposal. As suggested by Alexander, it adds two functions to email.utils: format_datetime and parsedate_to_datetime. Adding these does not require having localtime. In fact, with this patch you can get an aware datetime representi

[issue12554] Failed imports clean up module, but not sub modules

2011-07-13 Thread R. David Murray
R. David Murray added the comment: Yes, that's exactly my point. The loading of a module into sys.modules is a separate issue from the creation of a pointer to that module in the local name space. Once the former succeeds, it has succeeded and won't be done again. When the module that did

[issue12555] PEP 3151 implementation

2011-07-13 Thread Antoine Pitrou
Changes by Antoine Pitrou : Added file: http://bugs.python.org/file22650/9bb6b71f172d.diff ___ Python tracker ___ ___ Python-bugs-list mailing

[issue12555] PEP 3151 implementation

2011-07-13 Thread Antoine Pitrou
Changes by Antoine Pitrou : Removed file: http://bugs.python.org/file22648/d305942126b6.diff ___ Python tracker ___ ___ Python-bugs-list maili

[issue12550] regrtest: register SIGALRM signal using faulthandler

2011-07-13 Thread STINNER Victor
STINNER Victor added the comment: My patch doesn't work: the traceback is not printed: -- $ ./python -m test -v -u network -F test_threadsignals (...) [106] test_socketserver (...) test_UnixStreamServer (test.test_socketserver.SocketServerTest) ... creating server ADDR =

[issue12554] Failed imports clean up module, but not sub modules

2011-07-13 Thread R. David Murray
R. David Murray added the comment: In fact, to hopefully make perfectly clear what is going on here, let me demonstrate that *any* executable statement in the module that fails to load is executed if it occurs before the error that causes the load failure: rdmurray@hey:~/python/p32>cat te

[issue8916] Move PEP 362 (function signature objects) into inspect

2011-07-13 Thread Eric Snow
Changes by Eric Snow : -- nosy: +ericsnow ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.org

[issue12554] Failed imports clean up module, but not sub modules

2011-07-13 Thread Eric Snow
Eric Snow added the comment: Yeah, I missed the line where he imported foo.bar in "foo/__init__.py", and thought something else was going on. "foo/__init__.py" does not have to finish importing (just has to be on sys.modules) at the point foo.bar is imported. So foo.bar would be completely

[issue5505] sys.stdin.read() doesn't return after first EOF on Windows

2011-07-13 Thread Matt Joiner
Matt Joiner added the comment: I get this on Linux with ^D -- nosy: +anacrolix ___ Python tracker ___ ___ Python-bugs-list mailing lis

<    1   2