mirror of
https://github.com/python/cpython.git
synced 2025-07-24 11:44:31 +00:00
Update docs for namedtuple's renaming change.
This commit is contained in:
parent
5614524293
commit
85737b875f
1 changed files with 1 additions and 1 deletions
|
@ -625,7 +625,7 @@ they add the ability to access fields by name instead of position index.
|
|||
|
||||
If *rename* is true, invalid fieldnames are automatically replaced
|
||||
with positional names. For example, ``['abc', 'def', 'ghi', 'abc']`` is
|
||||
converted to ``['abc', '_2', 'ghi', '_4']``, eliminating the keyword
|
||||
converted to ``['abc', '_1', 'ghi', '_3']``, eliminating the keyword
|
||||
``def`` and the duplicate fieldname ``abc``.
|
||||
|
||||
If *verbose* is true, the class definition is printed just before being built.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue