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 vaultah
Recipients vaultah
Date 2014-10-12.15:24:56
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1413127496.19.0.512469690831.issue22619@psf.upfronthosting.co.za>
In-reply-to
Content
def _extract_tb_or_stack_iter(curr, limit, extractor):
    # Distinguish frames from tracebacks (need to import types)
    if limit is None:
        limit = getattr(sys, 'tracebacklimit', None)
    elif limit < 0 and isinstance(curr, types.TracebackType):
        seq = list(_extract_tb_or_stack_iter(curr, None, extractor))
        yield from seq[limit:]
    else:
        pass
History
Date User Action Args
2014-10-12 15:24:56vaultahsetrecipients: + vaultah
2014-10-12 15:24:56vaultahsetmessageid: <1413127496.19.0.512469690831.issue22619@psf.upfronthosting.co.za>
2014-10-12 15:24:56vaultahlinkissue22619 messages
2014-10-12 15:24:56vaultahcreate