Commit 58ccd201 authored by Raymond Hettinger's avatar Raymond Hettinger Committed by GitHub

bpo-36321: Fix misspelled attribute name in namedtuple() (GH-16858)

parent 24dc2f8c
......@@ -425,8 +425,6 @@ def namedtuple(typename, field_names, *, rename=False, defaults=None, module=Non
'__slots__': (),
'_fields': field_names,
'_field_defaults': field_defaults,
# alternate spelling for backward compatibility
'_fields_defaults': field_defaults,
'__new__': __new__,
'_make': _make,
'_replace': _replace,
......
Remove misspelled attribute. The 3.8 changelog noted that this would be
removed in 3.9.
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment