added DictType as alias for DictionaryType

This commit is contained in:
Guido van Rossum 1995-02-27 13:14:15 +00:00
parent 5e38b6fda1
commit 780620f2fd
1 changed files with 1 additions and 1 deletions

View File

@ -14,7 +14,7 @@ StringType = type('')
TupleType = type(())
ListType = type([])
DictionaryType = type({})
DictType = DictionaryType = type({})
def _f(): pass
FunctionType = type(_f)