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