diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2011-03-16 20:32:41 -0400 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2011-03-16 20:32:41 -0400 |
commit | cc5a8bed398eed0ab9188e86262c04b6dfc086f3 (patch) | |
tree | de015e579a1047ab52f6c5f9d6b21e5d034645ab /coverage/control.py | |
parent | d529c33c5d3434f25d06af872438f8d33153a8bb (diff) | |
download | python-coveragepy-cc5a8bed398eed0ab9188e86262c04b6dfc086f3.tar.gz |
Clean-ups
Diffstat (limited to 'coverage/control.py')
-rw-r--r-- | coverage/control.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/coverage/control.py b/coverage/control.py index 514f23d..3369d04 100644 --- a/coverage/control.py +++ b/coverage/control.py @@ -226,8 +226,8 @@ class coverage(object): self._check_for_packages() # Compiled Python files have two filenames: frame.f_code.co_filename is - # the filename at the time the .pyc was compiled. The second name - # is __file__, which is where the .pyc was actually loaded from. Since + # the filename at the time the .pyc was compiled. The second name is + # __file__, which is where the .pyc was actually loaded from. Since # .pyc files can be moved after compilation (for example, by being # installed), we look for __file__ in the frame and prefer it to the # co_filename value. |