added DictType as alias for DictionaryType
This commit is contained in:
parent
5e38b6fda1
commit
780620f2fd
|
@ -14,7 +14,7 @@ StringType = type('')
|
||||||
|
|
||||||
TupleType = type(())
|
TupleType = type(())
|
||||||
ListType = type([])
|
ListType = type([])
|
||||||
DictionaryType = type({})
|
DictType = DictionaryType = type({})
|
||||||
|
|
||||||
def _f(): pass
|
def _f(): pass
|
||||||
FunctionType = type(_f)
|
FunctionType = type(_f)
|
||||||
|
|
Loading…
Reference in New Issue