]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
added DictType as alias for DictionaryType
authorGuido van Rossum <guido@python.org>
Mon, 27 Feb 1995 13:14:15 +0000 (13:14 +0000)
committerGuido van Rossum <guido@python.org>
Mon, 27 Feb 1995 13:14:15 +0000 (13:14 +0000)
Lib/types.py

index 56dec040e7355c3f2990a6ffb58a801b36e0d281..fca95b33778deedafee3b77c94b7c7628b2726e5 100644 (file)
@@ -14,7 +14,7 @@ StringType = type('')
 
 TupleType = type(())
 ListType = type([])
-DictionaryType = type({})
+DictType = DictionaryType = type({})
 
 def _f(): pass
 FunctionType = type(_f)