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 complex
Recipients complex
Date 2009-06-18.11:37:25
SpamBayes Score 0.0001411501
Marked as misclassified No
Message-id <1245325047.26.0.892033914272.issue6307@psf.upfronthosting.co.za>
In-reply-to
Content
Python 2.5.4, Windows MSI installer, WinXP SP2, 32 bit:

Try the following code: (test script attached)

import traceback

try:
    someundefinedsymbol
except:
    traceback.print_last()

It will raise the following exception:

Traceback (most recent call last):
  File "bug.py", line 6, in <module>
    traceback.print_last()
  File "D:\Python25\lib\traceback.py", line 246, in print_last
    print_exception(sys.last_type, sys.last_value, sys.last_traceback,
AttributeError: 'module' object has no attribute 'last_type'
History
Date User Action Args
2009-06-18 11:37:27complexsetrecipients: + complex
2009-06-18 11:37:27complexsetmessageid: <1245325047.26.0.892033914272.issue6307@psf.upfronthosting.co.za>
2009-06-18 11:37:25complexlinkissue6307 messages
2009-06-18 11:37:25complexcreate