diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2014-11-27 14:07:10 -0500 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2014-11-27 14:07:10 -0500 |
commit | 40bc892993e7bbf6616e37c5ea963e0079cb0a6a (patch) | |
tree | 226556996eee8943441ead198d198a19cd15b761 /coverage/backward.py | |
parent | 0ed319529c4df0f99556eab3490000c660b6e14b (diff) | |
download | python-coveragepy-40bc892993e7bbf6616e37c5ea963e0079cb0a6a.tar.gz |
OK, I should really stop fiddling with spell-check...
Diffstat (limited to 'coverage/backward.py')
-rw-r--r-- | coverage/backward.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/coverage/backward.py b/coverage/backward.py index 3372a8b..0a08c6d 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'] |