diff options
author | Georg Brandl <georg@python.org> | 2008-03-05 07:10:35 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2008-03-05 07:10:35 (GMT) |
commit | 225163d6a686d18d6d283719cb9d4956c9574ece (patch) | |
tree | 816b3c61cb69893503cb56941a69d22f09df0593 /Doc/whatsnew | |
parent | f28896d0bb8a1550dae5b025d0397d38b143eb65 (diff) | |
download | cpython-225163d6a686d18d6d283719cb9d4956c9574ece.zip cpython-225163d6a686d18d6d283719cb9d4956c9574ece.tar.gz cpython-225163d6a686d18d6d283719cb9d4956c9574ece.tar.bz2 |
Fix some rst.
Diffstat (limited to 'Doc/whatsnew')
-rw-r--r-- | Doc/whatsnew/2.6.rst | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/Doc/whatsnew/2.6.rst b/Doc/whatsnew/2.6.rst index 68c912c..1ee812d 100644 --- a/Doc/whatsnew/2.6.rst +++ b/Doc/whatsnew/2.6.rst @@ -850,7 +850,7 @@ Here are all of the changes that Python 2.6 makes to the core Python language. positive or negative infinity. This works on any platform with IEEE 754 semantics. (Contributed by Christian Heimes.) - .. Patch 1635. + .. Patch 1635 Other functions in the :mod:`math` module, :func:`isinf` and :func:`isnan`, return true if their floating-point argument is @@ -932,7 +932,7 @@ Optimizations (Original optimization implemented by Armin Rigo, updated for Python 2.6 by Kevin Jacobs.) - .. % Patch 1700288 + .. Patch 1700288 * All of the functions in the :mod:`struct` module have been rewritten in C, thanks to work at the Need For Speed sprint. @@ -1335,17 +1335,17 @@ complete list of changes, or look through the CVS logs for all the details. long searches can now be interrupted. (Contributed by Josh Hoyt and Ralf Schmitt.) - .. % Patch 846388 + .. Patch 846388 * The :mod:`rgbimg` module has been removed. * The :mod:`sched` module's :class:`scheduler` instances now have a read-only :attr:`queue` attribute that returns the contents of the scheduler's queue, represented as a list of - named tuples with the fields - ``(*time*, *priority*, *action*, *argument*)``. + named tuples with the fields ``(time, priority, action, argument)``. (Contributed by Raymond Hettinger XXX check.) - .. % Patch 1861 + + .. Patch 1861 * The :mod:`sets` module has been deprecated; it's better to use the built-in :class:`set` and :class:`frozenset` types. @@ -1369,7 +1369,7 @@ complete list of changes, or look through the CVS logs for all the details. (Contributed by Adam Olsen.) - .. % Patch 1583 + .. Patch 1583 The :func:`siginterrupt` function is now available from Python code, and allows changing whether signals can interrupt system calls or not. |