Fix typos in comments, documentation and test method names

This commit is contained in:
Martin Panter 2016-05-08 13:48:10 +00:00
parent 129fe04d4d
commit f0564164ba
10 changed files with 12 additions and 12 deletions

View file

@ -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)