summaryrefslogtreecommitdiff
path: root/coverage/backunittest.py
diff options
context:
space:
mode:
authorNed Batchelder <ned@nedbatchelder.com>2014-11-27 10:36:16 -0500
committerNed Batchelder <ned@nedbatchelder.com>2014-11-27 10:36:16 -0500
commit16a6d9c45e80a67fe201fd0fe354fcd4aae25c9a (patch)
treec8ed0b7c2ce2dd1097ef72e0de06bb3c4fcb9cbf /coverage/backunittest.py
parent00506792848ee83de65b1740b3d82229ca55817a (diff)
downloadpython-coveragepy-16a6d9c45e80a67fe201fd0fe354fcd4aae25c9a.tar.gz
Try out pylint spelling. Kinda noisy, but fixed some stuff.
Diffstat (limited to 'coverage/backunittest.py')
-rw-r--r--coverage/backunittest.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/coverage/backunittest.py b/coverage/backunittest.py
index 648e74e..95b6fcc 100644
--- a/coverage/backunittest.py
+++ b/coverage/backunittest.py
@@ -1,7 +1,7 @@
"""Implementations of unittest features from the future."""
# Use unittest2 if it's available, otherwise unittest. This gives us
-# backported features for 2.6.
+# back-ported features for 2.6.
try:
import unittest2 as unittest
except ImportError:
@@ -9,7 +9,7 @@ except ImportError:
def unittest_has(method):
- """Does `unitttest.TestCase` have `method` defined?"""
+ """Does `unittest.TestCase` have `method` defined?"""
return hasattr(unittest.TestCase, method)