[issue25240] Stack overflow in reprlib causes a core dump

2021-09-07 Thread Irit Katriel
Irit Katriel added the comment: There was work on recursion in newer versions and several similar issues have been confirmed to be fixed. Since you didn't include a complete reproduction script, it's hard to know whether your case was fixed as well. I am therefore closing this, and request t

[issue25240] Stack overflow in reprlib causes a core dump

2018-09-21 Thread Karthikeyan Singaravelan
Change by Karthikeyan Singaravelan : -- nosy: +xtreak ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https:/

[issue25240] Stack overflow in reprlib causes a core dump

2015-09-26 Thread Serhiy Storchaka
Changes by Serhiy Storchaka : -- nosy: +rhettinger ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail

[issue25240] Stack overflow in reprlib causes a core dump

2015-09-26 Thread Ceridwen
New submission from Ceridwen: I have a linked list implementation made of nested tuples with a custom repr: def __repr__(self): return 'LinkedList(' + ', '.join(repr(v) for v in self) + ')' (Iterating over a LinkedList returns just its contents.) When using Raymond Hettinger's reci