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 xdegaye
Recipients xdegaye
Date 2012-11-08.23:09:52
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1352416193.43.0.475440625813.issue16446@psf.upfronthosting.co.za>
In-reply-to
Content
Also, the two oldest frames of the stack are identical (sic),
according to the printed traceback.

$ python3 foo.py
> /tmp/foo.py(3)<module>()
-> x = 1
(Pdb) import sys; print(sys.version)
3.2.2 (default, Dec 27 2011, 17:35:55) 
[GCC 4.3.2]
(Pdb) list
  1     import pdb
  2     pdb.set_trace()
  3  -> x = 1
  4
[EOF]
(Pdb) quit
Traceback (most recent call last):
  File "foo.py", line 3, in <module>
    x = 1
  File "foo.py", line 3, in <module>
    x = 1
  File "/usr/local/lib/python3.2/bdb.py", line 46, in trace_dispatch
    return self.dispatch_line(frame)
  File "/usr/local/lib/python3.2/bdb.py", line 65, in dispatch_line
    if self.quitting: raise BdbQuit
bdb.BdbQuit
$
History
Date User Action Args
2012-11-08 23:09:53xdegayesetrecipients: + xdegaye
2012-11-08 23:09:53xdegayesetmessageid: <1352416193.43.0.475440625813.issue16446@psf.upfronthosting.co.za>
2012-11-08 23:09:53xdegayelinkissue16446 messages
2012-11-08 23:09:52xdegayecreate