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 akl
Recipients akl
Date 2011-09-25.16:36:21
SpamBayes Score 9.064191e-06
Marked as misclassified No
Message-id <1316968582.76.0.94343164649.issue13044@psf.upfronthosting.co.za>
In-reply-to
Content
Using Python 2.7.1 on OpenBSD-current and 2.7.2 on Arch Linux, pdb throws a (harmless, it appears) exception at the end of a debugging session.  This does not happen for me using Python 2.5 or 2.6 or 3.2.

Console Session (on linux):

$ python2 --version
Python 2.7.2

$ python2 debug.py 
> /tmp/debug.py(4)<module>()
-> a = 1
(Pdb) n
> /tmp/debug.py(5)<module>()
-> b = 2
(Pdb) n
> /tmp/debug.py(6)<module>()
-> sum = a + b
(Pdb) n
--Return--
> /tmp/debug.py(6)<module>()->None
-> sum = a + b
(Pdb) n
Exception AttributeError: "'NoneType' object has no attribute 'path'" in <function _remove at 0xb73b6df4> ignore
History
Date User Action Args
2011-09-25 16:36:22aklsetrecipients: + akl
2011-09-25 16:36:22aklsetmessageid: <1316968582.76.0.94343164649.issue13044@psf.upfronthosting.co.za>
2011-09-25 16:36:22akllinkissue13044 messages
2011-09-25 16:36:21aklcreate