From: Guido van Rossum Date: Mon, 27 Feb 1995 13:14:15 +0000 (+0000) Subject: added DictType as alias for DictionaryType X-Git-Tag: v1.2b4~157 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=780620f2fd1e4b3ae918e175e0848ac1c9b1c36b;p=thirdparty%2FPython%2Fcpython.git added DictType as alias for DictionaryType --- diff --git a/Lib/types.py b/Lib/types.py index 56dec040e735..fca95b33778d 100644 --- a/Lib/types.py +++ b/Lib/types.py @@ -14,7 +14,7 @@ StringType = type('') TupleType = type(()) ListType = type([]) -DictionaryType = type({}) +DictType = DictionaryType = type({}) def _f(): pass FunctionType = type(_f)