Changes by Tom Tromey :
--
nosy: +tromey
___
Python tracker
<http://bugs.python.org/issue11410>
___
___
Python-bugs-list mailing list
Unsubscribe:
Changes by Tom Tromey :
--
nosy: +tromey
___
Python tracker
<http://bugs.python.org/issue10112>
___
___
Python-bugs-list mailing list
Unsubscribe:
Changes by Tom Tromey :
--
nosy: +tromey
___
Python tracker
<http://bugs.python.org/issue18213>
___
___
Python-bugs-list mailing list
Unsubscribe:
Tom Tromey added the comment:
It does fail without the patch:
test_format
XXX undetected error
test test_format failed -- Traceback (most recent call last):
File "/home/tromey/Space/Python/cpython/Lib/test/test_format.py", line 251,
in test_format
def test_exc(formatstr, args,
Tom Tromey added the comment:
It sure would.
Here's a new patch.
--
Added file: http://bugs.python.org/file28223/P
___
Python tracker
<http://bugs.python.org/is
New submission from Tom Tromey:
I was debugging this bug reported against gdb:
http://sourceware.org/bugzilla/show_bug.cgi?id=14386
It turns out that what went wrong in this code was that
PyIter_Check evaluates to 0 when its argument is a
Python list.
This happens because the PyIter_Check
Tom Tromey added the comment:
Here is a patch that includes a test case.
The test fails before the stringobject.c patch is applied,
and passes after.
--
Added file: http://bugs.python.org/file26629/P
___
Python tracker
<http://bugs.python.
New submission from Tom Tromey:
In gdb we supply a class whose nb_int method can throw
an exception.
A user wrote code like this:
return '%x' % value
... where "value" was an instance of this class.
This caused funny exception behavior later on.
You can see the origina