]> granicus.if.org Git - python/commit
Fix SF bug 610610 (reported by Martijn Pieters, diagnosed by Neal Norwitz).
authorGuido van Rossum <guido@python.org>
Wed, 18 Sep 2002 04:06:32 +0000 (04:06 +0000)
committerGuido van Rossum <guido@python.org>
Wed, 18 Sep 2002 04:06:32 +0000 (04:06 +0000)
commit98b2a42bc48a82718b36b9da094b1f6d24825967
treef193fcd830480b1bad404937ca12ad5e01e79392
parent5fab9c67eba274effd05c8b518d0eaad7a98103d
Fix SF bug 610610 (reported by Martijn Pieters, diagnosed by Neal Norwitz).

The switch in Exception__str__ didn't clear the error if
PySequence_Size() raised an exception.  Added a case -1 which clears
the error and falls through to the default case.

Definite backport candidate (this dates all the way to Python 2.0).
Python/exceptions.c