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 inducer
Recipients inducer
Date 2009-06-08.23:06:39
SpamBayes Score 4.5158492e-07
Marked as misclassified No
Message-id <1244502401.73.0.647401575179.issue6246@psf.upfronthosting.co.za>
In-reply-to
Content
I get this debugger session with the attached file. Note that even
though a NameError occurs, no indication of that error is visible on the
debugger conosle.
8< -----------------------------------------------------------------
$ python -m pdb pdb_bug.py
> /home/andreas/tmp/pdb_bug.py(1)<module>()
-> def f():
(Pdb) n
> /home/andreas/tmp/pdb_bug.py(6)<module>()
-> list(f())
(Pdb) s
--Call--
> /home/andreas/tmp/pdb_bug.py(1)f()
-> def f():
(Pdb) n
> /home/andreas/tmp/pdb_bug.py(2)f()
-> print "BLAH"
(Pdb) r
BLAH
--Return--
> /home/andreas/tmp/pdb_bug.py(3)f()->None
-> bogus
(Pdb)
History
Date User Action Args
2009-06-08 23:06:41inducersetrecipients: + inducer
2009-06-08 23:06:41inducersetmessageid: <1244502401.73.0.647401575179.issue6246@psf.upfronthosting.co.za>
2009-06-08 23:06:39inducerlinkissue6246 messages
2009-06-08 23:06:39inducercreate