tests/sitecustomize.py
author David Soria Parra <davidsp@fb.com>
Thu, 13 Mar 2014 16:05:06 -0700
changeset 20806 d66862b87ae6
parent 14971 0b21ae0a2366
child 24505 031947baf4d0
permissions -rw-r--r--
histedit: select the lowest rev when looking for a root in a revset (bc) When we specify a revision or a revset we just get the last element from the list. For revsets this can lead to unintended effects where you specify a revset like only() but instead histedit selects the highest revision in the set as root. Therefore we should always use the lowest revision number as root.

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