diff options
author | Georg Brandl <georg@python.org> | 2007-12-08 11:05:05 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2007-12-08 11:05:05 (GMT) |
commit | e7d118a5a11ef9e037f3ad647b821e9b64d967ac (patch) | |
tree | a44804834de5cb20cbf9254cfbaa8bbb8a2ae628 /Doc/whatsnew/2.6.rst | |
parent | 26458c12a0a25254c7028c9191a0af1245167914 (diff) | |
download | cpython-e7d118a5a11ef9e037f3ad647b821e9b64d967ac.zip cpython-e7d118a5a11ef9e037f3ad647b821e9b64d967ac.tar.gz cpython-e7d118a5a11ef9e037f3ad647b821e9b64d967ac.tar.bz2 |
Fix markup in whatsnew, use new directive in ACKS.
Diffstat (limited to 'Doc/whatsnew/2.6.rst')
-rw-r--r-- | Doc/whatsnew/2.6.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/whatsnew/2.6.rst b/Doc/whatsnew/2.6.rst index 74ed49c..14cefb9 100644 --- a/Doc/whatsnew/2.6.rst +++ b/Doc/whatsnew/2.6.rst @@ -545,9 +545,9 @@ complete list of changes, or look through the CVS logs for all the details. (Contributed by Raymond Hettinger.) * Another change to the :mod:`collections` module is that the - :class:`deque` type now supports an optional `maxlen` parameter; + :class:`deque` type now supports an optional *maxlen* parameter; if supplied, the deque's size will be restricted to no more - than ``maxlen`` items. Adding more items to a full deque causes + than *maxlen* items. Adding more items to a full deque causes old items to be discarded. :: |