diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2009-03-05 21:38:54 -0500 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2009-03-05 21:38:54 -0500 |
commit | 1e4a0f0bdb32f2ae041db8e086db75a615192c62 (patch) | |
tree | 268cc4d958f68247af2058b25de9d96c2a706f2b /setup.py | |
parent | 0cc8fd18714cb214327a0a58b704401a9efdf8dc (diff) | |
download | python-coveragepy-git-1e4a0f0bdb32f2ae041db8e086db75a615192c62.tar.gz |
Fix up some string continuations.
Diffstat (limited to 'setup.py')
-rw-r--r-- | setup.py | 5 |
1 files changed, 2 insertions, 3 deletions
@@ -1,14 +1,13 @@ # setup.py for coverage. -"""\ -Code coverage testing for Python +"""Code coverage testing for Python Coverage.py is a Python package that measures code coverage during test execution. It uses the code analysis tools and tracing hooks provided in the Python standard library to determine which lines are executable, and which have been executed. """ -classifiers = """\ +classifiers = """ Development Status :: 5 - Production/Stable Environment :: Console Intended Audience :: Developers |