summaryrefslogtreecommitdiff
path: root/coverage/backward.py
diff options
context:
space:
mode:
authorNed Batchelder <ned@nedbatchelder.com>2014-11-27 14:07:10 -0500
committerNed Batchelder <ned@nedbatchelder.com>2014-11-27 14:07:10 -0500
commit0d8e1f7783171c9c4f666f5b759322c5f27ebeb0 (patch)
tree57b8ef8a934b3b62b3b6cf63d161655a7ce41bb7 /coverage/backward.py
parent024c42c88ccbe5338fc308cf3e43c23092e295ba (diff)
downloadpython-coveragepy-git-0d8e1f7783171c9c4f666f5b759322c5f27ebeb0.tar.gz
OK, I should really stop fiddling with spell-check...
Diffstat (limited to 'coverage/backward.py')
-rw-r--r--coverage/backward.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/coverage/backward.py b/coverage/backward.py
index 3372a8b3..0a08c6d9 100644
--- a/coverage/backward.py
+++ b/coverage/backward.py
@@ -76,7 +76,7 @@ if sys.version_info >= (3, 0):
def bytes_to_ints(bytes_value):
"""Turn a bytes object into a sequence of ints."""
- # In Py3, iterating bytes gives ints.
+ # In Python 3, iterating bytes gives ints.
return bytes_value
else:
@@ -103,10 +103,10 @@ else:
try:
- # In Py 2.x, the builtins were in __builtin__
+ # In Python 2.x, the builtins were in __builtin__
BUILTINS = sys.modules['__builtin__']
except KeyError:
- # In Py 3.x, they're in builtins
+ # In Python 3.x, they're in builtins
BUILTINS = sys.modules['builtins']