summaryrefslogtreecommitdiffstats
path: root/Doc
diff options
context:
space:
mode:
authorRaymond Hettinger <python@rcn.com>2010-09-06 19:55:51 (GMT)
committerRaymond Hettinger <python@rcn.com>2010-09-06 19:55:51 (GMT)
commit09e4ebb6cda17a58d1ee2bf311c0038aac96ede8 (patch)
tree46aa7f2be3356bd75691aff5e12655dea5dde5dc /Doc
parent13a0db5ddbb53c504574743207524b037945552c (diff)
downloadcpython-09e4ebb6cda17a58d1ee2bf311c0038aac96ede8.zip
cpython-09e4ebb6cda17a58d1ee2bf311c0038aac96ede8.tar.gz
cpython-09e4ebb6cda17a58d1ee2bf311c0038aac96ede8.tar.bz2
Fix markup nits
Diffstat (limited to 'Doc')
-rw-r--r--Doc/whatsnew/3.2.rst6
1 files changed, 3 insertions, 3 deletions
diff --git a/Doc/whatsnew/3.2.rst b/Doc/whatsnew/3.2.rst
index f9663f6..0faac11 100644
--- a/Doc/whatsnew/3.2.rst
+++ b/Doc/whatsnew/3.2.rst
@@ -220,8 +220,8 @@ Some smaller changes made to the core Python language are:
(By Nick Coghlan and Terrence Cole; :issue:`9567`, :issue:`3445`, and
:issue:`8814`.)
-* The :mod:`abc` module now supports :func:`abstractclassmethod` and
- :func:`abstractstaticmethod`.
+* The :mod:`abc` module now supports :func:`~abc.abstractclassmethod` and
+ :func:`~abc.abstractstaticmethod`.
(Patch submitted by Daniel Urban; :issue:`5867`.)
@@ -410,7 +410,7 @@ Multi-threading
(Contributed by Antoine Pitrou; :issue:`3001`.)
* Regular and recursive locks now accept an optional *timeout* argument to their
- ``acquire`` method. (Contributed by Antoine Pitrou; :issue:`7316`.)
+ :meth:`acquire` method. (Contributed by Antoine Pitrou; :issue:`7316`.)
Similarly, :meth:`threading.Semaphore.acquire` also gains a *timeout*
argument. (Contributed by Torsten Landschoff; :issue:`850728`.)