view tests/sitecustomize.py @ 15237:7196ed7a1505

bookmarks: delegate writing to the repo just like reading This makes it easier for alternate storage backends to not use flat files for bookmarks storage.
author Augie Fackler <durin42@gmail.com>
date Wed, 12 Oct 2011 11:09:57 -0500
parents 0b21ae0a2366
children 031947baf4d0
line wrap: on
line source

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