diff options
author | Antoine Pitrou <solipsis@pitrou.net> | 2009-03-23 19:19:54 (GMT) |
---|---|---|
committer | Antoine Pitrou <solipsis@pitrou.net> | 2009-03-23 19:19:54 (GMT) |
commit | acc5d6b195c9f9819cc7ccab71547fde3f21ab3f (patch) | |
tree | d5bd2988930e87798aae30245e754486e1821312 /Objects/dictobject.c | |
parent | 3a652b1d0af20c7d2a9fc9251f71b2a34c49b302 (diff) | |
download | cpython-acc5d6b195c9f9819cc7ccab71547fde3f21ab3f.zip cpython-acc5d6b195c9f9819cc7ccab71547fde3f21ab3f.tar.gz cpython-acc5d6b195c9f9819cc7ccab71547fde3f21ab3f.tar.bz2 |
Merged revisions 70550 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r70550 | antoine.pitrou | 2009-03-23 20:17:00 +0100 (lun., 23 mars 2009) | 3 lines
The tracking statistics were actually too pessimistic
........
Diffstat (limited to 'Objects/dictobject.c')
-rw-r--r-- | Objects/dictobject.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Objects/dictobject.c b/Objects/dictobject.c index e005f8e..b39c614 100644 --- a/Objects/dictobject.c +++ b/Objects/dictobject.c @@ -500,6 +500,7 @@ _PyDict_MaybeUntrack(PyObject *op) _PyObject_GC_MAY_BE_TRACKED(ep[i].me_key)) return; } + DECREASE_TRACK_COUNT _PyObject_GC_UNTRACK(op); } |