Commit 780620f2 authored by Guido van Rossum's avatar Guido van Rossum

added DictType as alias for DictionaryType

parent 5e38b6fd
......@@ -14,7 +14,7 @@ StringType = type('')
TupleType = type(())
ListType = type([])
DictionaryType = type({})
DictType = DictionaryType = type({})
def _f(): pass
FunctionType = type(_f)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment