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
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
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