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.

Author pitrou
Recipients brett.cannon, pitrou, vstinner, zach.ware
Date 2017-08-31.23:58:13
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1504223893.4.0.531740410801.issue31217@psf.upfronthosting.co.za>
In-reply-to
Content
Ahah.
Actually, it's quite simple :-) On 64-bit Python:

>>> id(82914 - 82913) == id(1)
True

On 32-bit Python:

>>> id(82914 - 82913) == id(1)
False

So the first non-zero alloc_delta really has a snowball effect, as it creates new memory block which will produce a non-zero alloc_delta on the next run, etc.
History
Date User Action Args
2017-08-31 23:58:13pitrousetrecipients: + pitrou, brett.cannon, vstinner, zach.ware
2017-08-31 23:58:13pitrousetmessageid: <1504223893.4.0.531740410801.issue31217@psf.upfronthosting.co.za>
2017-08-31 23:58:13pitroulinkissue31217 messages
2017-08-31 23:58:13pitroucreate