tests/sitecustomize.py
author Augie Fackler <raf@durin42.com>
Fri, 08 Feb 2013 17:14:12 -0600
changeset 18586 40f9472f5737
parent 14971 0b21ae0a2366
child 24505 031947baf4d0
permissions -rw-r--r--
byterange: remove old two-arg raise trick We don't care about the original traceback, and this was frustrating any efforts to make the code work on Python 3.3.

try:
    import coverage
    getattr(coverage, 'process_startup', lambda: None)()
except ImportError:
    pass