mirror of
https://github.com/python/cpython.git
synced 2025-08-04 08:59:19 +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(())
|
||||
ListType = type([])
|
||||
DictionaryType = type({})
|
||||
DictType = DictionaryType = type({})
|
||||
|
||||
def _f(): pass
|
||||
FunctionType = type(_f)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue