summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_descr.py
diff options
context:
space:
mode:
authorMartin Panter <vadmium+py@gmail.com>2016-05-08 13:48:10 (GMT)
committerMartin Panter <vadmium+py@gmail.com>2016-05-08 13:48:10 (GMT)
commitf0564164bab43f078c9f84f334d72ddb0e69110c (patch)
treec932a0e51179ab15c414b95f280815f0901ac71a /Lib/test/test_descr.py
parent129fe04d4deec15f9ca0ee79776e0c4335fc12e7 (diff)
downloadcpython-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_descr.py')
-rw-r--r--Lib/test/test_descr.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_descr.py b/Lib/test/test_descr.py
index a8206d3..92767ec 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)