[issue16735] zipfile.is_zipfile wrongly recognizes non-zip as zip

2012-12-20 Thread Bohuslav "Slavek" Kabrda
Bohuslav "Slavek" Kabrda added the comment: Tried is_zipfile on /usr/bin/zip and it returns True, too, so it seems that this is a more general problem for zip-handling binaries... Anyway, thank you both, I agree that there is not much that can be done here. --

[issue16694] Add pure Python operator module

2012-12-20 Thread Zachary Ware
Zachary Ware added the comment: Here's v4, addressing Serhiy's comments on Reitveld. -- Added file: http://bugs.python.org/file28383/py_operator.v4.diff ___ Python tracker ___ __

[issue16687] Fix small gramatical error and add reference link in hashlib documentation

2012-12-20 Thread Roundup Robot
Roundup Robot added the comment: New changeset abfd3bc38b5d by Benjamin Peterson in branch '3.3': fix typo (#16687) http://hg.python.org/cpython/rev/abfd3bc38b5d New changeset 95cb2f09ac50 by Benjamin Peterson in branch 'default': merge 3.3 (closes #16687) http://hg.python.org/cpython/rev/95cb2f

[issue16687] Fix small gramatical error and add reference link in hashlib documentation

2012-12-20 Thread Benjamin Peterson
Changes by Benjamin Peterson : -- versions: +Python 3.3, Python 3.4 -Python 3.5 ___ Python tracker ___ ___ Python-bugs-list mailing li

[issue16741] `int()`, `float()`, etc think python strings are null-terminated

2012-12-20 Thread Benjamin Peterson
Changes by Benjamin Peterson : -- nosy: +mark.dickinson ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://

[issue16741] `int()`, `float()`, etc think python strings are null-terminated

2012-12-20 Thread ganges master
New submission from ganges master: I'm not sure if it's a bug or just an inconvenience, but when a string containing \x00 is passed to int/float/etc, they return a misleading exception: >>> int("abc") Traceback (most recent call last): File "", line 1, in ValueError: invalid

[issue16740] Types created with PyType_FromSpec lack a __module__ attribute.

2012-12-20 Thread Bradley Froehle
Bradley Froehle added the comment: I see this has already been fixed in Python 3.3. My apologies. -- resolution: -> invalid status: open -> closed versions: -Python 3.3, Python 3.4 ___ Python tracker ___

[issue16740] Types created with PyType_FromSpec lack a __module__ attribute.

2012-12-20 Thread Bradley Froehle
Bradley Froehle added the comment: For example, in PyType_FromSpec can we split the provided name into a module component and name component, and create the '__module__' entry in the dict? -- ___ Python tracker __

[issue16740] Types created with PyType_FromSpec lack a __module__ attribute.

2012-12-20 Thread Bradley Froehle
New submission from Bradley Froehle: Types created using PyType_FromSpec do not have a __module__ attribute by default. This caught me off guard. $ python3 Python 3.2.3 (default, Oct 19 2012, 20:10:41) [GCC 4.6.3] on linux2 Type "help", "copyright", "credits" or "license" for more information

[issue11383] compilation seg faults on insanely large expressions

2012-12-20 Thread STINNER Victor
Changes by STINNER Victor : -- nosy: +haypo ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.

[issue11383] compilation seg faults on insanely large expressions

2012-12-20 Thread Serhiy Storchaka
Changes by Serhiy Storchaka : -- components: +Interpreter Core ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue11383] compilation seg faults on insanely large expressions

2012-12-20 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: This bug does not reproduced on 3.3+ more as it was fixed in issue5765. But it is yet here in 2.7 and 3.2. -- versions: +Python 2.7, Python 3.2 -Python 3.4 ___ Python tracker __

[issue4071] ntpath.abspath fails for long str paths

2012-12-20 Thread Serhiy Storchaka
Changes by Serhiy Storchaka : -- type: crash -> behavior ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://

[issue16718] Mysterious atexit fail

2012-12-20 Thread Richard Oudkerk
Richard Oudkerk added the comment: Perhaps the simplest thing would be to stop doing anything special when a module is garbage collected: the garbage collector can take care of any orphaned ref-cycles involving the module dict. Then at shutdown the remaining modules in sys.modules could have

[issue16687] Fix small gramatical error and add reference link in hashlib documentation

2012-12-20 Thread Jeff Knupp
Changes by Jeff Knupp : Removed file: http://bugs.python.org/file28318/patch.txt ___ Python tracker ___ ___ Python-bugs-list mailing list Unsu

[issue16687] Fix small gramatical error and add reference link in hashlib documentation

2012-12-20 Thread Jeff Knupp
Jeff Knupp added the comment: Previous patch had unintentional local changes. Uploaded correct patch. -- Added file: http://bugs.python.org/file28382/new_patch.txt ___ Python tracker ___

[issue8853] getaddrinfo should accept port of type long

2012-12-20 Thread Petri Lehtinen
Petri Lehtinen added the comment: Fixed. -- resolution: -> fixed stage: patch review -> committed/rejected status: open -> closed ___ Python tracker ___ _

[issue8853] getaddrinfo should accept port of type long

2012-12-20 Thread Roundup Robot
Roundup Robot added the comment: New changeset 39803c20c9bf by Petri Lehtinen in branch '2.7': #8853: Allow port to be of type long for socket.getaddrinfo() http://hg.python.org/cpython/rev/39803c20c9bf -- nosy: +python-dev ___ Python tracker

[issue16597] file descriptor not being closed with context manager on IOError when device is full

2012-12-20 Thread Benjamin Peterson
Benjamin Peterson added the comment: 2012/12/20 Serhiy Storchaka : > > Serhiy Storchaka added the comment: > > Thank you for all commits, Benjamin. > > What is the peculiarity of 3.2? Applying bugfixes is optional. It should move to security-fix mode soon. -- __

[issue16597] file descriptor not being closed with context manager on IOError when device is full

2012-12-20 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Thank you for all commits, Benjamin. What is the peculiarity of 3.2? -- ___ Python tracker ___ __

[issue16597] file descriptor not being closed with context manager on IOError when device is full

2012-12-20 Thread Roundup Robot
Roundup Robot added the comment: New changeset 54372f38932e by Benjamin Peterson in branch '3.3': improve message (#16597) http://hg.python.org/cpython/rev/54372f38932e New changeset faaac6ce by Benjamin Peterson in branch 'default': merge 3.3 (#16597) http://hg.python.org/cpython/rev/faaac6

[issue16597] file descriptor not being closed with context manager on IOError when device is full

2012-12-20 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: About Misc/NEWS. Actually fixed close() methods of: Python implementation of BaseIO (C implementation already do right things), C implemettation of Buffered(Reader|Writer|Random) (Python implementation already do right things) and both implementations of Tex

[issue6514] "python -m unittest " does not run any tests

2012-12-20 Thread anatoly techtonik
anatoly techtonik added the comment: > The documentation already covers that "python -m unittest test_module" > usage works only in 2.7+. > > "Changed in version 2.7: In earlier versions it was only possible to > run individual test methods and not modules or classes." But the command line help

[issue16480] pyvenv 3.3 fails to create symlinks for /local/{bin, lib} to /{bin, lib}

2012-12-20 Thread Matthias Klose
Matthias Klose added the comment: virtualenv for 2.7, when used with a Debian/Ubuntu system installation, should only see site-packages. Same thing should be done for venv for 3.3 and up. Even if needed patches will not go upstream, they are welcome. -- __

[issue16597] file descriptor not being closed with context manager on IOError when device is full

2012-12-20 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: What is the peculiarity of 3.2? -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubs

[issue16480] pyvenv 3.3 fails to create symlinks for /local/{bin, lib} to /{bin, lib}

2012-12-20 Thread Barry A. Warsaw
Changes by Barry A. Warsaw : -- nosy: +barry ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python

[issue16597] file descriptor not being closed with context manager on IOError when device is full

2012-12-20 Thread Roundup Robot
Roundup Robot added the comment: New changeset b6ff6ac1f049 by Benjamin Peterson in branch '2.7': call close on the underlying stream even if flush raises (#16597) http://hg.python.org/cpython/rev/b6ff6ac1f049 -- ___ Python tracker

[issue16597] file descriptor not being closed with context manager on IOError when device is full

2012-12-20 Thread Benjamin Peterson
Benjamin Peterson added the comment: I think we can leave 3.2 alone. -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsub

[issue16739] texttestresult should decorate the stream with _WritelnDecorator

2012-12-20 Thread Michael Foord
Michael Foord added the comment: TextTestResult could decorate a raw stream (and not redecorate an already decorated one). -- assignee: -> michael.foord nosy: +michael.foord ___ Python tracker ___

[issue6514] "python -m unittest " does not run any tests

2012-12-20 Thread Berker Peksag
Berker Peksag added the comment: > The documentation should be fixed then: > http://docs.python.org/2/library/unittest#command-line-interface The documentation already covers that "python -m unittest test_module" usage works only in 2.7+. "Changed in version 2.7: In earlier versions it was onl

[issue16597] file descriptor not being closed with context manager on IOError when device is full

2012-12-20 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Here is a patch for 2.7. -- Added file: http://bugs.python.org/file28381/bufferedio_finally_close-2.7_2.patch ___ Python tracker ___

[issue16739] texttestresult should decorate the stream with _WritelnDecorator

2012-12-20 Thread Leo Arias
Leo Arias added the comment: A test with a fix. I'm not sure if this is the way to go, because the stream in TextTestRunner will be decorated twice. -- keywords: +patch Added file: http://bugs.python.org/file28379/fix-16739-texttestresult_writeln.patch ___

[issue16597] file descriptor not being closed with context manager on IOError when device is full

2012-12-20 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Here is a patch for 3.2. -- Added file: http://bugs.python.org/file28380/bufferedio_finally_close-3.2_2.patch ___ Python tracker ___

[issue16597] file descriptor not being closed with context manager on IOError when device is full

2012-12-20 Thread Roundup Robot
Roundup Robot added the comment: New changeset b0602a1eb3f6 by Benjamin Peterson in branch '3.3': call close on the underlying stream even if flush raises (closes #16597) http://hg.python.org/cpython/rev/b0602a1eb3f6 New changeset 142012e47c3b by Benjamin Peterson in branch 'default': merge 3.3

[issue16480] pyvenv 3.3 fails to create symlinks for /local/{bin, lib} to /{bin, lib}

2012-12-20 Thread Vinay Sajip
Vinay Sajip added the comment: Even when "posix_local" becomes the default scheme on Debian python builds, it's not clear whether the suggested fix is the correct one to make, unless "posix_local" is added to sysconfig's list of _INSTALL_SCHEMES. Matthias comment makes sense when considering s

[issue16597] file descriptor not being closed with context manager on IOError when device is full

2012-12-20 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Patch updated with Benjamin's nit. -- Added file: http://bugs.python.org/file28378/bufferedio_finally_close_2.patch ___ Python tracker ___ ___

[issue16480] pyvenv 3.3 fails to create symlinks for /local/{bin, lib} to /{bin, lib}

2012-12-20 Thread Matthias Klose
Matthias Klose added the comment: having the posix_prefix as the default in Debian is an oversight on my side. it always should be posix_local. I'll fix this at least for 3.3 in current development releases. The rationale for this is that distutils based installs install by default into the p

[issue16735] zipfile.is_zipfile wrongly recognizes non-zip as zip

2012-12-20 Thread R. David Murray
R. David Murray added the comment: Well, yes, but that ship has already sunk :) -- ___ Python tracker ___ ___ Python-bugs-list mailing

[issue16735] zipfile.is_zipfile wrongly recognizes non-zip as zip

2012-12-20 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: It's rather a bug in the ZIP format design. -- ___ Python tracker ___ ___ Python-bugs-list mailing

[issue16735] zipfile.is_zipfile wrongly recognizes non-zip as zip

2012-12-20 Thread R. David Murray
R. David Murray added the comment: So, it looks like this is not a bug in Python, just a weirdness of fastjar. Or, if you prefer, a bug in fastjar (they could assemble the signature instead of coding it as a single constant). -- resolution: -> invalid stage: -> committed/rejected st

[issue16739] texttestresult should decorate the stream with _WritelnDecorator

2012-12-20 Thread Leo Arias
New submission from Leo Arias: Using the unittest's texttestresult with stdout and verbosity 2 will fail because that stream doesn't have a writeln method. File "/usr/lib/python2.7/unittest/suite.py", line 108, in run test(result) File "/usr/lib/python2.7/unittest/suite.py", line 70, in

[issue16597] file descriptor not being closed with context manager on IOError when device is full

2012-12-20 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: There are a lot of people in the nosy list already. Does anyone have enough experience with exception machinery to review the patch (especially C part)? -- ___ Python tracker __

[issue16735] zipfile.is_zipfile wrongly recognizes non-zip as zip

2012-12-20 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: $ zipinfo fastjar Archive: fastjar Zip file size: 47664 bytes, number of entries: 31883 [fastjar]: Zipfile is disk 33807 of a multi-disk archive, and this is not the disk on which the central zipfile directory begins (disk 190). I.e. zipinfo de

[issue16735] zipfile.is_zipfile wrongly recognizes non-zip as zip

2012-12-20 Thread R. David Murray
R. David Murray added the comment: I'm imagining that it creates jar files, and thus has the signature as a constant. The is_zipfile check is much more complicated than just looking for that string, though, so what is going on must be even more perverse than that. It would be interesting to

[issue14901] Python Windows FAQ is Very Outdated

2012-12-20 Thread Ashish Nitin Patil
Ashish Nitin Patil added the comment: Always happy to contribute! My first! Looking forward to getting accustomed to it & doing my part for python. -- ___ Python tracker ___ ___

[issue16727] Windows installers for 2.7.3 don't install python27.dll correctly

2012-12-20 Thread Keith Sabine
Keith Sabine added the comment: Well all I can say is having installed BOTH the 32 and 64 bit versions, I found I only had the 32 bit dll installed. I can raise a second issue for the request to put a copy of the dll in the DLL directory, so that it's easier to locate the correct dll if needed

[issue16727] Windows installers for 2.7.3 don't install python27.dll correctly

2012-12-20 Thread Christian Heimes
Christian Heimes added the comment: No, I'm not sure. I peaked into python27.dll in system32 and saw that it refers to kernel32.dll. I guess I made the wrong conclusion ... You have to admit that the naming convention is a tiny bit confusion. ;) --

[issue16727] Windows installers for 2.7.3 don't install python27.dll correctly

2012-12-20 Thread Martin v . Löwis
Martin v. Löwis added the comment: Are you sure that the file in SysWOW64 is a 64-bit binary? On Win64, system32 contains the 64-bit DLLs, and SysWOW64 contains the 32-bit DLLs: http://en.wikipedia.org/wiki/WoW64#Registry_and_file_system Indeed, on my system, it's exactly reversed to what Chri

[issue16737] Different behaviours in script run directly and via runpy.run_module

2012-12-20 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: I'm just pointing that run_module() and run_path() differs in the same way as `python -m` and `python`. If you want to change behavior of run_module(), then you should to change behavior of `python -m` too. And I'm not sure that this change will not break a

[issue16737] Different behaviours in script run directly and via runpy.run_module

2012-12-20 Thread Vinay Sajip
Vinay Sajip added the comment: I'd use runpy.run_path if I could, but it's not available on Python 2.6 - that's why I'm using run_module. A lot of setup.py files out there use __file__ to compute additional package names, package data locations etc. - this can lead to bogus package names comp

[issue16597] file descriptor not being closed with context manager on IOError when device is full

2012-12-20 Thread Christian Heimes
Changes by Christian Heimes : -- nosy: +christian.heimes ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http:/

[issue16727] Windows installers for 2.7.3 don't install python27.dll correctly

2012-12-20 Thread Christian Heimes
Christian Heimes added the comment: On my Windows box the 32bit python27.dll is in C:\Windows\System32\ and the 64bit DLL is in c:\Windows\SysWOW64\. Can you recall the installation order, did you install the 32 or 64bit version first? Did you choose "install for all users" for both installati

[issue16736] select.poll() converts long to int without checking for overflow

2012-12-20 Thread Richard Oudkerk
Richard Oudkerk added the comment: Thanks. I will close. -- stage: -> committed/rejected status: open -> closed ___ Python tracker ___ _

[issue16692] Support TLS 1.1 and TLS 1.2

2012-12-20 Thread Christian Heimes
Changes by Christian Heimes : -- components: +Extension Modules nosy: +christian.heimes ___ Python tracker ___ ___ Python-bugs-list ma

[issue16734] Delay interpreter startup phase until script is read

2012-12-20 Thread Christian Heimes
Christian Heimes added the comment: That's the way fork() and the subprocess module work. Please follow Serhiy's advice. -- nosy: +christian.heimes resolution: -> rejected stage: -> committed/rejected status: open -> closed type: -> behavior ___ P

[issue2721] unittest.makeSuite undocumented and "obsolete" - but what to use instead?

2012-12-20 Thread anatoly techtonik
anatoly techtonik added the comment: What about? suite = unittest.makeSuite(SConfTestCase, 'test_') -- nosy: +techtonik ___ Python tracker ___

[issue16738] Comparisons difference: bytes with bytes, str with str

2012-12-20 Thread Christian Heimes
Christian Heimes added the comment: That's the correct behaviour. Iteration and item access of bytes don't return bytes but a small number, e.g. b[0] returns 116 and not b't'. >>> b = b't' >>> b[0] in [b] False >>> b[0] 116 >>> ord(b) 116 But: >>> b in [b] True -- nosy: +christian.he

[issue16737] Different behaviours in script run directly and via runpy.run_module

2012-12-20 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: $ ./python -m script /home/serhiy/py/cpython/script.py __main__ $ ./python -c "import runpy; runpy.run_path('script.py', run_name='__main__')" script.py __main__ This looks consistent. -- nosy: +serhiy.storchaka __

[issue16738] Comparisons difference: bytes with bytes, str with str

2012-12-20 Thread Ivan Bykov
New submission from Ivan Bykov: Python 3.3.0 (v3.3.0:bd8afb90ebf2, Sep 29 2012, 10:55:48) [MSC v.1600 32 bit (Intel)] on win32 Type "help", "copyright", "credits" or "license" for more information. >>> b = b't' >>> b[0] in [b] False >>> u = 't' >>> u[0] in [u] True -- messages: 177817 n

[issue879399] socket line buffering

2012-12-20 Thread Kristján Valur Jónsson
Kristján Valur Jónsson added the comment: New patch, with unittest. -- Added file: http://bugs.python.org/file28377/_fileobject.diff ___ Python tracker ___ _

[issue6514] "python -m unittest " does not run any tests

2012-12-20 Thread anatoly techtonik
anatoly techtonik added the comment: The documentation should be fixed then: http://docs.python.org/2/library/unittest#command-line-interface -- nosy: +techtonik ___ Python tracker __

[issue16737] Different behaviours in script run directly and via runpy.run_module

2012-12-20 Thread Vinay Sajip
New submission from Vinay Sajip: If a script is run directly, the value of __file__ in it is relative to the current directory. If run via runpy.run_module, the value of __file__ is an absolute path. This is a problem in certain scenarios - e.g. if the script is a distribution's setup.py, a lo

[issue16736] select.poll() converts long to int without checking for overflow

2012-12-20 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: This is a part of issue15989. -- nosy: +serhiy.storchaka resolution: -> duplicate superseder: -> Possible integer overflow of PyLong_AsLong() results ___ Python tracker ___

[issue13153] IDLE crashes when pasting non-BMP unicode char on Py3

2012-12-20 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: A simplest solution is to raise a TclError instead of ValueError for non-BMP characters. This should not break any existing code, because a user code should be ready to catch a TclError in any case. Here is a patch. A more complicated solution is to add Valu

[issue16736] select.poll() converts long to int without checking for overflow

2012-12-20 Thread Richard Oudkerk
New submission from Richard Oudkerk: Relevant code: int timeout = 0, poll_result, i, j; ... tout = PyNumber_Long(tout); if (!tout) return NULL; timeout = PyLong_AsLong(tout); <-- implicit cast to int -- messages: 177811 nosy: sbt priority: no

[issue14373] C implementation of functools.lru_cache

2012-12-20 Thread Ned Batchelder
Changes by Ned Batchelder : -- nosy: -nedbat ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.pytho

[issue16694] Add pure Python operator module

2012-12-20 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Sorry, I forgot push a "Publish All My Drafts" button. Please consider other my comments to first patch. I also have added new comments about length_hint(). Your implementation of attrgetter() looks good. One possible disadvantage of pure functional approach

[issue12876] Make Test Error : ImportError: No module named _sha256

2012-12-20 Thread Encolpe DEGOUTE
Encolpe DEGOUTE added the comment: I my experience this error comes when SASL headers are missing during the build. Under debian or ubuntu it's the package named libsasl2-dev. -- nosy: +encolpe ___ Python tracker

[issue14373] C implementation of functools.lru_cache

2012-12-20 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Thanks, Alexey. However most of my comments were not considered. I have repeated them and added some new comments. -- stage: patch review -> needs patch ___ Python tracker

[issue13863] import.c sometimes generates incorrect timestamps on Windows + NTFS

2012-12-20 Thread Mark Dickinson
Changes by Mark Dickinson : -- assignee: -> mark.dickinson ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: htt

[issue16735] zipfile.is_zipfile wrongly recognizes non-zip as zip

2012-12-20 Thread Bohuslav "Slavek" Kabrda
Bohuslav "Slavek" Kabrda added the comment: Oh, sorry, I will upload it on the bugtracker next time. I know that jar files are zip files, but this is not a jar (although it has "jar" in file). This is a binary. -- ___ Python tracker

[issue14373] C implementation of functools.lru_cache

2012-12-20 Thread Serhiy Storchaka
Changes by Serhiy Storchaka : -- stage: needs patch -> patch review ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscri

[issue16735] zipfile.is_zipfile wrongly recognizes non-zip as zip

2012-12-20 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: You can upload a sample file on bug tracker. Actually jar files are just zip files (with some limitation and special files). zipfile.is_zipfile should return True on a jar file. -- nosy: +serhiy.storchaka ___ Pyth

[issue16734] Delay interpreter startup phase until script is read

2012-12-20 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: You should use some kind of inter-process communication to synchronize your processes. In particular, for get rid of a temporary script file you can either send script via pipe: p = Popen([sys.executable], stdin=PIPE) p.stdin.write(longscript) or u

[issue16733] Solaris ctypes_test failures

2012-12-20 Thread Trent Nelson
Changes by Trent Nelson : -- nosy: +trent ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.or

[issue16735] zipfile.is_zipfile wrongly recognizes non-zip as zip

2012-12-20 Thread Bohuslav "Slavek" Kabrda
New submission from Bohuslav "Slavek" Kabrda: When I use zipfile.is_zipfile on file fastjar (sample uploaded at [1]) from libgcj, I get True, while I should get False (reproducible with fastjar from libgcj 4.7.2 on Fedora 18). This is caused by stringEndArchive string being present in the file,

[issue16734] Delay interpreter startup phase until script is read

2012-12-20 Thread Charles-François Natali
Charles-François Natali added the comment: I may be missing something, but nothing's wrong here. When you start a subprocess, the child process keeps running (in background). If you want to wait for its termination, just use p.wait() or p.communicate(). -- nosy: +neologix _

[issue16718] Mysterious atexit fail

2012-12-20 Thread Amaury Forgeot d'Arc
Amaury Forgeot d'Arc added the comment: I don't know, you should probably ask there. One blocker is to make builtin and extension modules participate in GC, search "pep3121" to see the many intermediate issues. -- ___ Python tracker