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 orlp
Recipients orlp
Date 2014-08-08.03:24:54
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1407468294.35.0.178254047495.issue22169@psf.upfronthosting.co.za>
In-reply-to
Content
According to the documentation of sys.tracebacklimit, setting it to 0 or less would assure "all traceback information is suppressed and only the exception type and value are printed".

This is not the case:

    $ python -c "import sys; sys.tracebacklimit = 0; raise Exception()"
    Exception

    $ python3 -c "import sys; sys.tracebacklimit = 0; raise Exception()"
    Traceback (most recent call last):
      File "<string>", line 1, in <module>
    Exception
History
Date User Action Args
2014-08-08 03:24:54orlpsetrecipients: + orlp
2014-08-08 03:24:54orlpsetmessageid: <1407468294.35.0.178254047495.issue22169@psf.upfronthosting.co.za>
2014-08-08 03:24:54orlplinkissue22169 messages
2014-08-08 03:24:54orlpcreate