diff options
author | Berker Peksag <berker.peksag@gmail.com> | 2016-06-24 09:12:01 +0300 |
---|---|---|
committer | Berker Peksag <berker.peksag@gmail.com> | 2016-06-24 09:12:01 +0300 |
commit | 37e87e6ec116b0e0e41e9623eec2743c78d96b5c (patch) | |
tree | aa4a4f01623308e704073a760185aa63e6208d34 /Doc | |
parent | Issue #27378: Remove an outdated reference from regex HOWTO (diff) | |
download | cpython-37e87e6ec116b0e0e41e9623eec2743c78d96b5c.tar.gz cpython-37e87e6ec116b0e0e41e9623eec2743c78d96b5c.tar.bz2 cpython-37e87e6ec116b0e0e41e9623eec2743c78d96b5c.zip |
Issue #26547: Remove outdated term dictproxy from vars() documentation
dictproxy was used in Python 2 and it was renamed to mappingproxy
in Python 3.3.
Patch by Julien.
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/library/functions.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/functions.rst b/Doc/library/functions.rst index e6094636245..efa5bd38a25 100644 --- a/Doc/library/functions.rst +++ b/Doc/library/functions.rst @@ -1469,7 +1469,7 @@ are always available. They are listed here in alphabetical order. Objects such as modules and instances have an updateable :attr:`~object.__dict__` attribute; however, other objects may have write restrictions on their :attr:`~object.__dict__` attributes (for example, classes use a - dictproxy to prevent direct dictionary updates). + :class:`types.MappingProxyType` to prevent direct dictionary updates). Without an argument, :func:`vars` acts like :func:`locals`. Note, the locals dictionary is only useful for reads since updates to the locals |