diff options
author | Ezio Melotti <ezio.melotti@gmail.com> | 2013-01-27 04:20:14 (GMT) |
---|---|---|
committer | Ezio Melotti <ezio.melotti@gmail.com> | 2013-01-27 04:20:14 (GMT) |
commit | 3f5db3940ff71428d1eecb3d4eebe68d9c3d216d (patch) | |
tree | ef8c20da3ad9050700786a6999e1094f7fe397ba /Lib/test/test_isinstance.py | |
parent | 1c1cadbbca21f75733bb201e7c94863b6e6ed206 (diff) | |
download | cpython-3f5db3940ff71428d1eecb3d4eebe68d9c3d216d.zip cpython-3f5db3940ff71428d1eecb3d4eebe68d9c3d216d.tar.gz cpython-3f5db3940ff71428d1eecb3d4eebe68d9c3d216d.tar.bz2 |
Fix a few typos and a double semicolon. Patch by Eitan Adler.
Diffstat (limited to 'Lib/test/test_isinstance.py')
-rw-r--r-- | Lib/test/test_isinstance.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_isinstance.py b/Lib/test/test_isinstance.py index dc2d074..7a6730e 100644 --- a/Lib/test/test_isinstance.py +++ b/Lib/test/test_isinstance.py @@ -15,7 +15,7 @@ class TestIsInstanceExceptions(unittest.TestCase): # (leading to an "undetected error" in the debug build). Set up is, # isinstance(inst, cls) where: # - # - cls isn't a a type, or a tuple + # - cls isn't a type, or a tuple # - cls has a __bases__ attribute # - inst has a __class__ attribute # - inst.__class__ as no __bases__ attribute |