mirror of
https://github.com/python/cpython.git
synced 2025-08-04 17:08:35 +00:00
bpo-36321: Fix misspelled attribute name in namedtuple() (GH-16858)
This commit is contained in:
parent
24dc2f8c56
commit
58ccd201fa
2 changed files with 2 additions and 2 deletions
|
@ -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,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue