tests/sitecustomize.py
author Adrian Buehlmann <adrian@cadifra.com>
Tue, 15 Feb 2011 14:41:49 +0100
changeset 13408 19ad316e5be3
parent 10648 58128004cca1
child 14971 0b21ae0a2366
permissions -rw-r--r--
transaction: use posixfile and unlink from util instead of open() and os.unlink() Avoids potential issues with file access on Windows (e.g. AV-scanners).

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