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 gavento
Recipients alexandre.vassalotti, gavento, habnabit, jafo, jcea, matrixise, pitrou, schmir, serhiy.storchaka, tleeuwenburg@gmail.com
Date 2016-07-26.16:59:41
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1469552381.35.0.726550907442.issue3119@psf.upfronthosting.co.za>
In-reply-to
Content
The issue is still present in Python 2.7.12 and Python 3.5.2, and the implementation has not been changed in the master branch either.
You can test it with the attached program constructing a graph (simplified, but a realistic application), or with the following obviously deep construction:

import pickle, _pickle
a=()
for i in range(1000): a = (a,)
pickle.dumps(a) # or _pickle.dumps(a)

Any further comments or thoughts on the solution?
History
Date User Action Args
2016-07-26 16:59:41gaventosetrecipients: + gavento, jafo, jcea, pitrou, alexandre.vassalotti, schmir, habnabit, tleeuwenburg@gmail.com, serhiy.storchaka, matrixise
2016-07-26 16:59:41gaventosetmessageid: <1469552381.35.0.726550907442.issue3119@psf.upfronthosting.co.za>
2016-07-26 16:59:41gaventolinkissue3119 messages
2016-07-26 16:59:41gaventocreate