[IronPython] Traceback regression

Michael Foord fuzzyman at voidspace.org.uk
Mon Apr 28 01:09:52 CEST 2008


Sanghyeon Seo wrote:
> Traceback has regressed.
>   

Seo thinks this might actually now be fixed in the repository 
(http://www.codeplex.com/IronPython/WorkItem/View.aspx?WorkItemId=11116 
is marked as closed in 2.0 Beta 2).

If this *isn't* fixed it would be a major blocker for Resolver - it 
would prevent us providing accurate error messages to our users.

All the best,


Michael Foord
http://www.ironpythoninaction.com/

> import sys
> def f(): 1/0
> try: f()
> except: tb = sys.exc_info()[2]
> while tb:
>     print tb.tb_lineno
>     tb = tb.tb_next
>
> CPython: 3 2
> IronPython 1.1.1: 3 2
> IronPython 2.0a5: 2
> IronPython 2.0b1: (nothing)
>
> This is not 1.x->2.x regression. This is regression between 2.x series.
>
>   




More information about the Ironpython-users mailing list