tests/sitecustomize.py
author Pierre-Yves David <pierre-yves.david@fb.com>
Tue, 07 Oct 2014 00:38:14 -0700
changeset 22824 9271630f4720
parent 14971 0b21ae0a2366
child 24505 031947baf4d0
permissions -rw-r--r--
strip: stop calling `remove` on smartset The `remove` method is not part of the smartset specification. We use a plain old list comprehension instead.

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