mirror of
https://github.com/python/cpython.git
synced 2025-09-27 10:50:04 +00:00
added DictType as alias for DictionaryType
This commit is contained in:
parent
5e38b6fda1
commit
780620f2fd
1 changed files with 1 additions and 1 deletions
|
@ -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…
Add table
Add a link
Reference in a new issue