tests/sitecustomize.py
author Benoit Boissinot <benoit.boissinot@ens-lyon.org>
Sat, 12 Mar 2011 17:08:42 +0100
changeset 13601 0388e3e36693
parent 10648 58128004cca1
child 14971 0b21ae0a2366
permissions -rw-r--r--
bisect: new command to extend the bisect range (issue2690) When bisect ends in a merge point, and one of the parent wasn't checked, this usually means the culprit is in a branch that wasn't scanned. For this case we provide a new command which extends the range of the bisect search to the common ancestor of the parents of the merge.

try:
    import coverage
    if hasattr(coverage, 'process_startup'):
        coverage.process_startup()
except ImportError:
    pass