This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: reference loss in test_xml_etree_c
Type: resource usage Stage: resolved
Components: Library (Lib) Versions: Python 3.3
process
Status: closed Resolution: duplicate
Dependencies: Superseder: Element should support cyclic GC
View: 14065
Assigned To: eli.bendersky Nosy List: eli.bendersky, flox, pitrou, python-dev
Priority: critical Keywords:

Created on 2012-04-01 12:16 by pitrou, last changed 2022-04-11 14:57 by admin. This issue is now closed.

Messages (5)
msg157279 - (view) Author: Antoine Pitrou (pitrou) * (Python committer) Date: 2012-04-01 12:16
This is quite recent.

$ ./python -m test -R 3:2 test_xml_etree_c
[1/1] test_xml_etree_c
beginning 5 repetitions
12345
.....
test_xml_etree_c leaked [-2, -2] references, sum=-4
msg157282 - (view) Author: Eli Bendersky (eli.bendersky) * (Python committer) Date: 2012-04-01 12:58
Thanks, I'll try to investigate this ASAP
msg157288 - (view) Author: Antoine Pitrou (pitrou) * (Python committer) Date: 2012-04-01 13:43
The culprit is 0ca32013d77e.
msg157295 - (view) Author: Roundup Robot (python-dev) (Python triager) Date: 2012-04-01 14:41
New changeset c5cf48752d81 by Eli Bendersky in branch 'default':
Removing the test of Element that causes ref-leak in GC (issue #14464).
http://hg.python.org/cpython/rev/c5cf48752d81
msg157297 - (view) Author: Eli Bendersky (eli.bendersky) * (Python committer) Date: 2012-04-01 14:44
For now the refcounts will be clean. Work on the problem will continue in its original issue (#14065).
History
Date User Action Args
2022-04-11 14:57:28adminsetgithub: 58669
2012-04-01 14:44:09eli.benderskysetstatus: open -> closed
superseder: Element should support cyclic GC
messages: + msg157297

resolution: duplicate
stage: needs patch -> resolved
2012-04-01 14:41:48python-devsetnosy: + python-dev
messages: + msg157295
2012-04-01 13:43:12pitrousetmessages: + msg157288
2012-04-01 12:58:20eli.benderskysetmessages: + msg157282
2012-04-01 12:16:34pitroucreate