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 vstinner
Recipients vstinner
Date 2008-09-26.10:52:10
SpamBayes Score 3.1963061e-06
Marked as misclassified No
Message-id <1222426331.79.0.411203479625.issue3973@psf.upfronthosting.co.za>
In-reply-to
Content
Short example:
---
# -*- coding: ASCII -*-
raise Exception("line 2")
---

Result:
----
Traceback (most recent call last):
  File "plop.py", line 3, in <module>

Exception: line 2
----

The problem is around newtracebackobject() which calls 
PyCode_Addr2Line(). It maybe a bug is frame->co_lnotab generation.

This bus is specified to python3 (trunk).
History
Date User Action Args
2008-09-26 10:52:11vstinnersetrecipients: + vstinner
2008-09-26 10:52:11vstinnersetmessageid: <1222426331.79.0.411203479625.issue3973@psf.upfronthosting.co.za>
2008-09-26 10:52:11vstinnerlinkissue3973 messages
2008-09-26 10:52:10vstinnercreate