diff options
-rw-r--r-- | Lib/collections/__init__.py | 2 | ||||
-rw-r--r-- | Misc/NEWS.d/next/Library/2019-10-19-21-41-20.bpo-36321.CFlxfy.rst | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/Lib/collections/__init__.py b/Lib/collections/__init__.py index 2fc71e2..cec6c97 100644 --- a/Lib/collections/__init__.py +++ b/Lib/collections/__init__.py @@ -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, diff --git a/Misc/NEWS.d/next/Library/2019-10-19-21-41-20.bpo-36321.CFlxfy.rst b/Misc/NEWS.d/next/Library/2019-10-19-21-41-20.bpo-36321.CFlxfy.rst new file mode 100644 index 0000000..cf51d71 --- /dev/null +++ b/Misc/NEWS.d/next/Library/2019-10-19-21-41-20.bpo-36321.CFlxfy.rst @@ -0,0 +1,2 @@ +Remove misspelled attribute. The 3.8 changelog noted that this would be +removed in 3.9. |