[Python-Dev] Summary of Python tracker Issues

2014-05-23 Thread Python tracker
ACTIVITY SUMMARY (2014-05-16 - 2014-05-23) Python tracker at http://bugs.python.org/ To view or respond to any of the issues listed below, click on the issue. Do NOT respond to this message. Issues counts and deltas: open4622 ( +8) closed 28710 (+36) total 2 (+44) Open issues wit

Re: [Python-Dev] Unexpected increase of globals() refcount

2014-05-23 Thread Benjamin Peterson
On Fri, May 23, 2014, at 8:49, Chandra Srinivasan wrote: > Hi, > I ran the following code in the Python interpreter and am trying to > determine if the behavior I see is expected: > > import sys > print sys.getrefcount(globals()) > class Foo(object): >def __init__(self): > pass > print s

[Python-Dev] Unexpected increase of globals() refcount

2014-05-23 Thread Chandra Srinivasan
Hi, I ran the following code in the Python interpreter and am trying to determine if the behavior I see is expected: import sys print sys.getrefcount(globals()) class Foo(object): def __init__(self): pass print sys.getrefcount(globals()) The first print statement above prints '4' and th