[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 

___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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 list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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: +sbt

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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 warning: "/etc/fonts/conf.d/50-user.conf", line 9: reading 
>>> configurations from ~/.fonts.conf is deprecated.

>>> 
gc: uncollectable 
gc: uncollectable 
gc: uncollectable 
gc: uncollectable 
gc: uncollectable 
gc: uncollectable 
gc: uncollectable 
gc: uncollectable 
gc: uncollectable 
gc: uncollectable 
gc: uncollectable 
gc: uncollectable 
gc: uncollectable 
gc: uncollectable 
gc: uncollectable 
gc: uncollectable 
gc: uncollectable 
gc: uncollectable 
gc: uncollectable 
gc: uncollectable 
gc: uncollectable 
gc: uncollectable 
gc: uncollectable 
gc: uncollectable 
gc: uncollectable 
gc: uncollectable 
gc: uncollectable 
gc: uncollectable 
gc: uncollectable 
gc: uncollectable 
gc: uncollectable 
gc: uncollectable 
gc: uncollectable 
gc: uncollectable 
gc: uncollectable 
gc: uncollectable 
gc: uncollectable 
gc:0: ResourceWarning: gc: 1 uncollectable objects at shutdown
  []

platform: Ubuntu 12.10 AMD64
browser: Firefox 20.0

--
components: Library (Lib)
messages: 190494
nosy: christian.heimes, pitrou
priority: low
severity: normal
status: open
title: antigravity leaks subprocess.Popen object
type: resource usage
versions: Python 3.4

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com