diff options
author | Martin Panter <vadmium+py@gmail.com> | 2016-05-08 13:48:10 (GMT) |
---|---|---|
committer | Martin Panter <vadmium+py@gmail.com> | 2016-05-08 13:48:10 (GMT) |
commit | f0564164bab43f078c9f84f334d72ddb0e69110c (patch) | |
tree | c932a0e51179ab15c414b95f280815f0901ac71a /Lib/test/test_module.py | |
parent | 129fe04d4deec15f9ca0ee79776e0c4335fc12e7 (diff) | |
download | cpython-f0564164bab43f078c9f84f334d72ddb0e69110c.zip cpython-f0564164bab43f078c9f84f334d72ddb0e69110c.tar.gz cpython-f0564164bab43f078c9f84f334d72ddb0e69110c.tar.bz2 |
Fix typos in comments, documentation and test method names
Diffstat (limited to 'Lib/test/test_module.py')
-rw-r--r-- | Lib/test/test_module.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_module.py b/Lib/test/test_module.py index 48ab0b4..3a076b3 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) |