gh-110275: Named tuple's __replace__() now raises TypeError for invalid arguments (GH-110299)

This commit is contained in:
Serhiy Storchaka 2023-12-04 13:30:32 +02:00 committed by GitHub
parent da6760bdf5
commit c74e9fb189
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 9 additions and 7 deletions

View file

@ -981,6 +981,10 @@ field names, the method and attribute names start with an underscore.
Named tuples are also supported by generic function :func:`copy.replace`.
.. versionchanged:: 3.13
Raise :exc:`TypeError` instead of :exc:`ValueError` for invalid
keyword arguments.
.. attribute:: somenamedtuple._fields
Tuple of strings listing the field names. Useful for introspection