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 alexandre.vassalotti, amaury.forgeotdarc, jcea, loewis, mhammond, pitrou
Date 2008-09-11.13:36:43
SpamBayes Score 4.6925008e-05
Marked as misclassified No
Message-id <1221140201.5667.5.camel@fsol>
In-reply-to <1221131144.9.0.0781169443671.issue3640@psf.upfronthosting.co.za>
Content
By the way, this isn't caused by the present issue, but you'll notice
that in the latest trunk, some tests in find_recursion_limit.py fail
with an AttributeError instead of RuntimeError. This is likely caused by
a PyDict_GetItem() call discarding the RuntimeError somewhere and
returning NULL, which in turn raises an AttributeError (as I explained
on the mailing-list).

A quick way to fix it would be to use "except (AttributeError,
RuntimeError)" in the testing func of find_recursion_limit.py.
History
Date User Action Args
2008-09-11 13:37:28pitrousetrecipients: + pitrou, loewis, mhammond, jcea, amaury.forgeotdarc, alexandre.vassalotti
2008-09-11 13:36:44pitroulinkissue3640 messages
2008-09-11 13:36:43pitroucreate