diff options
author | Raymond Hettinger <python@rcn.com> | 2016-08-16 17:59:21 (GMT) |
---|---|---|
committer | Raymond Hettinger <python@rcn.com> | 2016-08-16 17:59:21 (GMT) |
commit | a5f1fbd493006eaa87fdd32b20333ca68c97e29f (patch) | |
tree | 70a38454e003276fdc69dd9e3eda1e24a92d19b1 | |
parent | 6538b430cfa3b076da2f9320bb86aaa3c3c7bcf5 (diff) | |
parent | 379a3ffaf21f89720f0f052802a09672a54d8dd3 (diff) | |
download | cpython-a5f1fbd493006eaa87fdd32b20333ca68c97e29f.zip cpython-a5f1fbd493006eaa87fdd32b20333ca68c97e29f.tar.gz cpython-a5f1fbd493006eaa87fdd32b20333ca68c97e29f.tar.bz2 |
merge
-rw-r--r-- | Doc/library/collections.rst | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/Doc/library/collections.rst b/Doc/library/collections.rst index a6c9be6..778bd54 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*. |