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 Umank Behera
Recipients Umank Behera
Date 2015-03-20.18:50:08
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1426877408.78.0.379022955074.issue23724@psf.upfronthosting.co.za>
In-reply-to
Content
Code:
def main(foo):
    raise Exception("Some Exception")

bar = 1
main(bar)
----

On execution:
Traceback (most recent call last):
  File "st.py", line 5, in <module>
    main(bar)
  File "st.py", line 2, in main
    raise Exception("Some Exception")
Exception: Some Exception
----

It should show the value of bar is 1 on the first frame printed.
History
Date User Action Args
2015-03-20 18:50:08Umank Beherasetrecipients: + Umank Behera
2015-03-20 18:50:08Umank Beherasetmessageid: <1426877408.78.0.379022955074.issue23724@psf.upfronthosting.co.za>
2015-03-20 18:50:08Umank Beheralinkissue23724 messages
2015-03-20 18:50:08Umank Beheracreate