summaryrefslogtreecommitdiffstats
path: root/Doc/library/collections.rst
diff options
context:
space:
mode:
authorRaymond Hettinger <python@rcn.com>2016-08-16 17:59:04 (GMT)
committerRaymond Hettinger <python@rcn.com>2016-08-16 17:59:04 (GMT)
commit379a3ffaf21f89720f0f052802a09672a54d8dd3 (patch)
tree21409fb218c4d89162dc8591a149845724b3d021 /Doc/library/collections.rst
parentd4583d7fea9e3fbbc0a8f5333003938e358b5a58 (diff)
downloadcpython-379a3ffaf21f89720f0f052802a09672a54d8dd3.zip
cpython-379a3ffaf21f89720f0f052802a09672a54d8dd3.tar.gz
cpython-379a3ffaf21f89720f0f052802a09672a54d8dd3.tar.bz2
Remove duplicate of the entry in the seealso section
Diffstat (limited to 'Doc/library/collections.rst')
-rw-r--r--Doc/library/collections.rst5
1 files changed, 0 insertions, 5 deletions
diff --git a/Doc/library/collections.rst b/Doc/library/collections.rst
index 7eff4ce..a147287 100644
--- a/Doc/library/collections.rst
+++ b/Doc/library/collections.rst
@@ -793,11 +793,6 @@ they add the ability to access fields by name instead of position index.
Named tuple instances do not have per-instance dictionaries, so they are
lightweight and require no more memory than regular tuples.
- For simple uses, where the only requirement is to be able to refer to a set
- of values by name using attribute-style access, the
- :class:`types.SimpleNamespace` type can be a suitable alternative to using
- a namedtuple.
-
.. versionchanged:: 3.1
Added support for *rename*.