Skip to content

0.3.3

Compare
Choose a tag to compare
@sqla-tester sqla-tester released this 02 Sep 18:49

0.3.3

Released: Mon May 31 2010

  • Added conditional to RichTraceback
    such that if no traceback is passed
    and sys.exc_info() has been reset,
    the formatter just returns blank
    for the "traceback" portion.

    References: #135

  • Fixed sometimes incorrect usage of
    exc.class.name
    in html/text error templates when using
    Python 2.4

    References: #131

  • Fixed broken @Property decorator on
    template.last_modified

  • Fixed error formatting when a stacktrace
    line contains no line number, as in when
    inside an eval/exec-generated function.

    References: #132

  • When a .py is being created, the tempfile
    where the source is stored temporarily is
    now made in the same directory as that of
    the .py file. This ensures that the two
    files share the same filesystem, thus
    avoiding cross-filesystem synchronization
    issues. Thanks to Charles Cazabon.