summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1995-02-27 13:14:15 (GMT)
committerGuido van Rossum <guido@python.org>1995-02-27 13:14:15 (GMT)
commit780620f2fd1e4b3ae918e175e0848ac1c9b1c36b (patch)
tree764fc0cc3264a043921bfcc51516c3cab49e042d
parent5e38b6fda1d4e2822ac72e1f643f251bd0f3175b (diff)
downloadcpython-780620f2fd1e4b3ae918e175e0848ac1c9b1c36b.zip
cpython-780620f2fd1e4b3ae918e175e0848ac1c9b1c36b.tar.gz
cpython-780620f2fd1e4b3ae918e175e0848ac1c9b1c36b.tar.bz2
added DictType as alias for DictionaryType
-rw-r--r--Lib/types.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/types.py b/Lib/types.py
index 56dec04..fca95b3 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)