Fix markup in whatsnew, use new directive in ACKS.

This commit is contained in:
Georg Brandl 2007-12-08 11:05:05 +00:00
parent 26458c12a0
commit e7d118a5a1
2 changed files with 202 additions and 200 deletions

View file

@ -1,11 +1,13 @@
Contributors to the Python Documentation
----------------------------------------
This file lists people who have contributed in some way to the Python
This section lists people who have contributed in some way to the Python
documentation. It is probably not complete -- if you feel that you or
anyone else should be on this list, please let us know (send email to
docs@python.org), and we'll be glad to correct the problem.
.. acks::
* Aahz
* Michael Abbott
* Steve Alexander

View file

@ -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.
::