[issue7793] regrtest fails with RuntimeError: maximum recursion depth exceeded in some cases

2010-02-27 Thread Florent Xicluna
Florent Xicluna florent.xicl...@gmail.com added the comment: Fixed in r78497. -- resolution: accepted - fixed stage: patch review - committed/rejected status: open - closed ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue7793

[issue7793] regrtest fails with RuntimeError: maximum recursion depth exceeded in some cases

2010-01-27 Thread Chris Withers
Chris Withers ch...@simplistix.co.uk added the comment: Can you try and list what the cases are which cause this failure to occur? -- nosy: +cjw296 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue7793

[issue7793] regrtest fails with RuntimeError: maximum recursion depth exceeded in some cases

2010-01-27 Thread Amaury Forgeot d'Arc
Amaury Forgeot d'Arc amaur...@gmail.com added the comment: The module is probably reloaded, which causes code like: _ord = ord def ord(c): ... _ord(c) ... to form a recursion loop. Attached patch removes the need for a special ord(). All this should be simply removed in py3k

[issue7793] regrtest fails with RuntimeError: maximum recursion depth exceeded in some cases

2010-01-27 Thread Florent Xicluna
Florent Xicluna la...@yahoo.fr added the comment: Thank you for the patch and the analysis. It fixes the recursion. -- stage: test needed - patch review ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue7793

[issue7793] regrtest fails with RuntimeError: maximum recursion depth exceeded in some cases

2010-01-26 Thread Florent Xicluna
New submission from Florent Xicluna la...@yahoo.fr: ~ $ ./python -m test.regrtest -R 1:0: test_multibytecodec_support test_codecencodings_tw test_codecencodings_jp test_multibytecodec_support test_codecencodings_tw test test_codecencodings_tw failed -- Traceback (most recent call last): File

[issue7793] regrtest fails with RuntimeError: maximum recursion depth exceeded in some cases

2010-01-26 Thread Ezio Melotti
Changes by Ezio Melotti ezio.melo...@gmail.com: -- nosy: +ezio.melotti ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue7793 ___ ___ Python-bugs-list