From: Raymond Hettinger Date: Tue, 16 Aug 2016 17:59:04 +0000 (-0700) Subject: Remove duplicate of the entry in the seealso section X-Git-Tag: v3.6.0b1~702^2 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=379a3ffaf21f89720f0f052802a09672a54d8dd3;p=thirdparty%2FPython%2Fcpython.git Remove duplicate of the entry in the seealso section --- diff --git a/Doc/library/collections.rst b/Doc/library/collections.rst index 7eff4ce56cfd..a147287255a2 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*.