diff options
author | cocoatomo <cocoatomo77@gmail.com> | 2017-03-09 15:54:27 (GMT) |
---|---|---|
committer | Raymond Hettinger <rhettinger@users.noreply.github.com> | 2017-03-09 15:54:27 (GMT) |
commit | 309fb90f6895c47e7b41df3d739db45e8ec136c9 (patch) | |
tree | fc4fd46f7a5f5b87d1c86247cd16d109e14c8d6b /Doc | |
parent | 0c2ed76fda39e95b9c3ebebefa20d7e03db5dde1 (diff) | |
download | cpython-309fb90f6895c47e7b41df3d739db45e8ec136c9.zip cpython-309fb90f6895c47e7b41df3d739db45e8ec136c9.tar.gz cpython-309fb90f6895c47e7b41df3d739db45e8ec136c9.tar.bz2 |
Insert the line which should not have been deleted (#581)
see [bpo-29772](http://bugs.python.org/issue29772)
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/library/collections.rst | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Doc/library/collections.rst b/Doc/library/collections.rst index 3c8c05f..d80b5bf 100644 --- a/Doc/library/collections.rst +++ b/Doc/library/collections.rst @@ -200,6 +200,7 @@ counts, but the output will exclude results with counts of zero or less. adapted for Python 2.5 and an early `Bag recipe <https://code.activestate.com/recipes/259174/>`_ for Python 2.4. + * `Bag class <https://www.gnu.org/software/smalltalk/manual-base/html_node/Bag.html>`_ in Smalltalk. * Wikipedia entry for `Multisets <https://en.wikipedia.org/wiki/Multiset>`_. |