[issue18121] antigravity leaks subprocess.Popen object

2013-08-15 Thread Antoine Pitrou
Antoine Pitrou added the comment: Outdated by PEP 442. -- resolution: -> out of date status: open -> closed ___ Python tracker ___ __

[issue18121] antigravity leaks subprocess.Popen object

2013-06-02 Thread R. David Murray
R. David Murray added the comment: See also issue 5993. -- nosy: +r.david.murray ___ Python tracker ___ ___ Python-bugs-list mailing l

[issue18121] antigravity leaks subprocess.Popen object

2013-06-02 Thread Richard Oudkerk
Richard Oudkerk added the comment: Presumably this is caused by the fact that Popen.__del__() ressurects self by appending self to _active if the process is still alive. On Windows this is unnecessary. On Unix it would be more sensible to just append the *pid* to _active. -- nosy: +s

[issue18121] antigravity leaks subprocess.Popen object

2013-06-02 Thread Christian Heimes
New submission from Christian Heimes: $ ./python Python 3.4.0a0 (default:801567d6302c+, May 23 2013, 14:22:00) [GCC 4.7.2] on linux Type "help", "copyright", "credits" or "license" for more information. >>> import gc >>> gc.set_debug(gc.DEBUG_UNCOLLECTABLE) >>> import antigravity >>> Fontconfig