summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_binop.py
diff options
context:
space:
mode:
authorVille Skyttä <ville.skytta@iki.fi>2017-08-03 06:00:59 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2017-08-03 06:00:59 (GMT)
commit49b2734bf12dc1cda80fd73d3ec8896ae3e362f2 (patch)
tree049e496126aae48bf6d7c3ddbb7f145e04e53e97 /Lib/test/test_binop.py
parentd9d55c91bec4776b41685b48fe660621e89f0617 (diff)
downloadcpython-49b2734bf12dc1cda80fd73d3ec8896ae3e362f2.zip
cpython-49b2734bf12dc1cda80fd73d3ec8896ae3e362f2.tar.gz
cpython-49b2734bf12dc1cda80fd73d3ec8896ae3e362f2.tar.bz2
Spelling fixes (#2902)
Diffstat (limited to 'Lib/test/test_binop.py')
-rw-r--r--Lib/test/test_binop.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_binop.py b/Lib/test/test_binop.py
index 4f5b8a8..299af09 100644
--- a/Lib/test/test_binop.py
+++ b/Lib/test/test_binop.py
@@ -22,7 +22,7 @@ def isnum(x):
return 0
def isRat(x):
- """Test wheter an object is an instance of the Rat class."""
+ """Test whether an object is an instance of the Rat class."""
return isinstance(x, Rat)
class Rat(object):