summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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)