diff options
author | Raymond Hettinger <python@rcn.com> | 2010-11-05 23:58:42 (GMT) |
---|---|---|
committer | Raymond Hettinger <python@rcn.com> | 2010-11-05 23:58:42 (GMT) |
commit | e679a3702414570b022985b69043d0d684bb97cc (patch) | |
tree | 7aa7595ca3b99a21fcf459741507dc54ac877e01 /Doc/library/userdict.rst | |
parent | 6b1167c61cb3e1e05b4b310fa9c9cddff93afa27 (diff) | |
download | cpython-e679a3702414570b022985b69043d0d684bb97cc.zip cpython-e679a3702414570b022985b69043d0d684bb97cc.tar.gz cpython-e679a3702414570b022985b69043d0d684bb97cc.tar.bz2 |
Provide links to Python source in a handful of
cases where the source is a generally helpful
adjunct to the docs.
Diffstat (limited to 'Doc/library/userdict.rst')
-rw-r--r-- | Doc/library/userdict.rst | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Doc/library/userdict.rst b/Doc/library/userdict.rst index 9ddfde5..ab9ab04 100644 --- a/Doc/library/userdict.rst +++ b/Doc/library/userdict.rst @@ -19,6 +19,11 @@ available starting with Python version 2.2). Prior to the introduction of sub-classes that obtained new behaviors by overriding existing methods or adding new ones. +.. seealso:: + + Latest version of the `UserDict Python source code + <http://svn.python.org/view/python/branches/release27-maint/Lib/UserDict.py?view=markup>`_ + The :mod:`UserDict` module defines the :class:`UserDict` class and :class:`DictMixin`: |