commit | 780620f2fd1e4b3ae918e175e0848ac1c9b1c36b | [log] [tgz] |
---|---|---|
author | Guido van Rossum <guido@python.org> | Mon Feb 27 13:14:15 1995 +0000 |
committer | Guido van Rossum <guido@python.org> | Mon Feb 27 13:14:15 1995 +0000 |
tree | 764fc0cc3264a043921bfcc51516c3cab49e042d | |
parent | 5e38b6fda1d4e2822ac72e1f643f251bd0f3175b [diff] |
added DictType as alias for DictionaryType
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 @@ TupleType = type(()) ListType = type([]) -DictionaryType = type({}) +DictType = DictionaryType = type({}) def _f(): pass FunctionType = type(_f)