Issue437809

classification
Title: traceback error
Type: Severity: normal
Components: Library Versions:
Milestone:
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: bckfnn Nosy List: bckfnn, mlh
Priority: normal Keywords:

Created on 2001-07-02.03:32:43 by mlh, last changed 2001-07-19.07:15:04 by bckfnn.

Messages
msg331 (view) Author: Magnus Lie Hetland (mlh) Date: 2001-07-02.03:32:43
There seems to be a problem with the standard module traceback:

Jython 2.1a1 on java1.2.2 (JIT: symcjit)
Type "copyright", "credits" or "license" for more information
>>> import traceback
>>> traceback.extract_stack()
Traceback (innermost last):
  File "<console>", line 1, in ?
  File "C:\jython\Lib\traceback.py", line 249, in extract_stack
AttributeError: 'None' object has no attribute 'co_filename'

msg332 (view) Author: Finn Bock (bckfnn) Date: 2001-07-03.21:54:12
Logged In: YES 
user_id=4201

Added as test295.
msg333 (view) Author: Finn Bock (bckfnn) Date: 2001-07-19.07:15:04
Logged In: YES 
user_id=4201

Fixed in exceptions.java: 1.9;
History
Date User Action Args
2001-07-02 03:32:43mlhcreate