[issue5634] cPickle error in case of recursion limit

2009-03-31 Thread vadim suvorov
New submission from vadim suvorov : In case of heavily recursive data structure cPickle produces intermittent random exceptions (AttributeError, etc.). The expected is RuntimeError: ('maximum recursion depth exceeded in ...'). In addition, the behavior differs for classic/new classes. The reason

[issue5634] cPickle error in case of recursion limit

2009-04-02 Thread Amaury Forgeot d'Arc
Amaury Forgeot d'Arc added the comment: Georg, I think that your recent change in r71024 implements the same idea directly in PyErr_ExceptionMatches. Can you confirm this and close the issue? -- assignee: -> georg.brandl nosy: +amaury.forgeotdarc, georg.brandl

[issue5634] cPickle error in case of recursion limit

2009-04-03 Thread Collin Winter
Changes by Collin Winter : -- nosy: +collinwinter ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.py

[issue5634] cPickle error in case of recursion limit

2009-04-04 Thread Georg Brandl
Georg Brandl added the comment: Yes, that's true. It should be more generally helpful in there. -- resolution: -> fixed status: open -> closed ___ Python tracker ___ ___