From 40bc892993e7bbf6616e37c5ea963e0079cb0a6a Mon Sep 17 00:00:00 2001 From: Ned Batchelder Date: Thu, 27 Nov 2014 14:07:10 -0500 Subject: OK, I should really stop fiddling with spell-check... --- coverage/backward.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'coverage/backward.py') 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'] -- cgit v1.2.1