Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 780620f

Browse files
committed
added DictType as alias for DictionaryType
1 parent 5e38b6f commit 780620f

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Lib/types.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414

1515
TupleType = type(())
1616
ListType = type([])
17-
DictionaryType = type({})
17+
DictType = DictionaryType = type({})
1818

1919
def _f(): pass
2020
FunctionType = type(_f)

0 commit comments

Comments
 (0)