[Python-Dev] [Python-checkins] Daily reference leaks (d7e490db8d54): sum=61494 (original) (raw)
Guido van Rossum guido at python.org
Wed Oct 21 00:23:01 EDT 2015
- Previous message (by thread): [Python-Dev] [Python-checkins] Daily reference leaks (d7e490db8d54): sum=61494
- Next message (by thread): [Python-Dev] [Python-checkins] Daily reference leaks (d7e490db8d54): sum=61494
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
[Adding Raymond to the thread, since he doesn't always follow the lists closely.]
On Tue, Oct 20, 2015 at 8:23 PM, Benjamin Peterson <benjamin at python.org> wrote:
On Tue, Oct 20, 2015, at 15:57, Antoine Pitrou wrote: > > > These leaks have been here a while. Anyone know the cause? > > > > On Tue, 20 Oct 2015 at 01:47 wrote: > > > >> results for d7e490db8d54 on branch "default" > >> -------------------------------------------- > >> > >> testcapi leaked [5411, 5411, 5411] references, sum=16233 > >> testcapi leaked [1421, 1423, 1423] memory blocks, sum=4267 > >> testfunctools leaked [0, 2, 2] memory blocks, sum=4 > >> testthreading leaked [10820, 10820, 10820] references, sum=32460 > >> testthreading leaked [2842, 2844, 2844] memory blocks, sum=8530 > > Bisection shows they were probably introduced by: > > changeset: 97413:dccc4e63aef5 > user: Raymond Hettinger <python at rcn.com> > date: Sun Aug 16 19:43:34 2015 -0700 > files: Doc/library/operator.rst Doc/whatsnew/3.6.rst > Lib/operator.py Lib/test/testoperator.py > description: > Issue #24379: Add operator.subscript() as a convenience for building > slices. > > > If you comment out
@object._new_
on line 411 in operator.py, or if > you remove the slots assignment (which is a bit worrying), the leak > seems suppressed. The problem is that the "subscript" class is not a GC type, but participates in a cycle through its type. I suspect it's type to force all heap types to have GC. Armin Rigo found previous examples where this special case caused problems, and I don't see what it buys anyway.
Python-Dev mailing list Python-Dev at python.org https://mail.python.org/mailman/listinfo/python-dev Unsubscribe: https://mail.python.org/mailman/options/python-dev/guido%40python.org
-- --Guido van Rossum (python.org/~guido) -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://mail.python.org/pipermail/python-dev/attachments/20151020/5ebf8979/attachment.html>
- Previous message (by thread): [Python-Dev] [Python-checkins] Daily reference leaks (d7e490db8d54): sum=61494
- Next message (by thread): [Python-Dev] [Python-checkins] Daily reference leaks (d7e490db8d54): sum=61494
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]