From: Raymond Hettinger Date: Sun, 16 Aug 2015 15:32:01 +0000 (-0700) Subject: Issue #24842: Cross-reference types.SimpleNamespace from the namedtuple docs X-Git-Tag: v3.6.0a1~1781 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=2a75e8f95899431f44a9af9e23ca504d3e73a2ad;p=python Issue #24842: Cross-reference types.SimpleNamespace from the namedtuple docs --- diff --git a/Doc/library/collections.rst b/Doc/library/collections.rst index f2befe7c08..aeb1c52273 100644 --- a/Doc/library/collections.rst +++ b/Doc/library/collections.rst @@ -962,6 +962,9 @@ and more efficient to use a simple :class:`~enum.Enum`: constructor that is convenient for use cases where named tuples are being subclassed. + * :meth:`types.SimpleNamespace` for a mutable namespace based on an underlying + dictionary instead of a tuple. + :class:`OrderedDict` objects ----------------------------