diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2010-02-22 20:33:30 -0500 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2010-02-22 20:33:30 -0500 |
commit | bf001ce15db6a5847fa41919474d9d007d2d49d3 (patch) | |
tree | f440c391d25695f2ae98db154b03933e64e9794e /coverage/control.py | |
parent | d16df59ff31dda7ae5b062786798d72460c33357 (diff) | |
download | python-coveragepy-bf001ce15db6a5847fa41919474d9d007d2d49d3.tar.gz |
Spaces
Diffstat (limited to 'coverage/control.py')
-rw-r--r-- | coverage/control.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/coverage/control.py b/coverage/control.py index a42d083..b8b049e 100644 --- a/coverage/control.py +++ b/coverage/control.py @@ -426,12 +426,12 @@ def process_startup(): There are two ways to configure your Python installation to invoke this function when Python starts: - + #. Create or append to sitecustomize.py to add these lines:: - + import coverage coverage.process_startup() - + #. Create a .pth file in your Python installation containing:: import coverage; coverage.process_startup() |