diff options
author | Martin Panter <vadmium+py@gmail.com> | 2016-05-08 14:02:35 +0000 |
---|---|---|
committer | Martin Panter <vadmium+py@gmail.com> | 2016-05-08 14:02:35 +0000 |
commit | 1ce738e08f147beb724f22a9411724a955cd418d (patch) | |
tree | 9c2b84d7b81d1117159dd791094994d96094077e /Lib/test | |
parent | cc22984d9e5e5357212db2eb1841f93e75fe75f5 (diff) | |
parent | 4c35964b764540988bfb342bffc7c4b1cb674031 (diff) | |
download | cpython-git-1ce738e08f147beb724f22a9411724a955cd418d.tar.gz |
Merge typo fixes from 3.5
Diffstat (limited to 'Lib/test')
-rw-r--r-- | Lib/test/test_descr.py | 2 | ||||
-rw-r--r-- | Lib/test/test_module.py | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/Lib/test/test_descr.py b/Lib/test/test_descr.py index d1b29059e9..9aedba2ded 100644 --- a/Lib/test/test_descr.py +++ b/Lib/test/test_descr.py @@ -3489,7 +3489,7 @@ order (MRO) for bases """ b.a = a z = deepcopy(a) # This blew up before - def test_unintialized_modules(self): + def test_uninitialized_modules(self): # Testing uninitialized module objects... from types import ModuleType as M m = M.__new__(M) diff --git a/Lib/test/test_module.py b/Lib/test/test_module.py index 48ab0b4928..3a076b392a 100644 --- a/Lib/test/test_module.py +++ b/Lib/test/test_module.py @@ -30,7 +30,7 @@ class ModuleTests(unittest.TestCase): pass self.assertEqual(foo.__doc__, ModuleType.__doc__) - def test_unintialized_missing_getattr(self): + def test_uninitialized_missing_getattr(self): # Issue 8297 # test the text in the AttributeError of an uninitialized module foo = ModuleType.__new__(ModuleType) |