Skip to content
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
forgot an s
  • Loading branch information
juliusgeo committed Mar 10, 2022
commit bf5e7a1fa2ab84f4402d6a4173dfc914a64a9d72
2 changes: 1 addition & 1 deletion Lib/typing.py
Original file line number Diff line number Diff line change
Expand Up @@ -2603,7 +2603,7 @@ def _make_nmtuple(name, types, module, defaults = ()):
defaults=defaults, module=module)
nm_tpl.__annotations__ = types
nm_tpl.__new__.__annotations__ = types
nm_tpl.__new__.__defaults__ = default
nm_tpl.__new__.__defaults__ = defaults
return nm_tpl


Expand Down