➜

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.

作者 yselivanov
收信人 Arfrever, alex, asvetlov, benjamin.peterson, eric.araujo, eric.smith, eric.snow, ezio.melotti, flox, gregory.p.smith, introom, josh.r, pitrou, refi64, rhettinger, scoder, serhiy.storchaka, tonn81, westurner, yselivanov
日期 2015-05-16.22:16:30
SpamBayes Score -1.0
Marked as misclassified 是
Message-id <1431814590.61.0.837782071239.issue16991@psf.upfronthosting.co.za>
In-reply-to
内容
I must have used a better example :)

>>> import sys; from collections import OrderedDict as OD
>>> sys.getrefcount(None)
2053
>>> OD();OD();OD();OD();
OrderedDict()
OrderedDict()
OrderedDict()
OrderedDict()
>>> sys.getrefcount(None)
2057
历史
日期 用户 动作 参数
2015-05-16 22:16:30yselivanov修改recipients: + yselivanov, rhettinger, gregory.p.smith, pitrou, scoder, eric.smith, benjamin.peterson, ezio.melotti, eric.araujo, Arfrever, alex, asvetlov, flox, eric.snow, serhiy.storchaka, westurner, refi64, josh.r, tonn81, introom
2015-05-16 22:16:30yselivanov修改messageid: <1431814590.61.0.837782071239.issue16991@psf.upfronthosting.co.za>
2015-05-16 22:16:30yselivanov链接issue16991 messages
2015-05-16 22:16:30yselivanov创建