summaryrefslogtreecommitdiffstats
path: root/Doc/whatsnew
diff options
context:
space:
mode:
authorRaymond Hettinger <python@rcn.com>2011-01-23 21:13:27 (GMT)
committerRaymond Hettinger <python@rcn.com>2011-01-23 21:13:27 (GMT)
commitcbc903bc7e9d3b95328c103ec0d6aa6886971a65 (patch)
tree281ad2fccd3dc6c93f4b44502f1abaff4ab05333 /Doc/whatsnew
parent98b140c19620eae8e6e44d9edc7ab02aaeaa4031 (diff)
downloadcpython-cbc903bc7e9d3b95328c103ec0d6aa6886971a65.zip
cpython-cbc903bc7e9d3b95328c103ec0d6aa6886971a65.tar.gz
cpython-cbc903bc7e9d3b95328c103ec0d6aa6886971a65.tar.bz2
Add tracker references.
Diffstat (limited to 'Doc/whatsnew')
-rw-r--r--Doc/whatsnew/3.2.rst4
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/whatsnew/3.2.rst b/Doc/whatsnew/3.2.rst
index c680d31..ec3c240 100644
--- a/Doc/whatsnew/3.2.rst
+++ b/Doc/whatsnew/3.2.rst
@@ -997,7 +997,7 @@ self-reference by displaying "..." in the recursive part of the representation
string.
To help write such :meth:`__repr__` methods, the :mod:`reprlib` module has a new
-decorator, :func:`reprlib.recursive_repr`, for detecting recursive calls to
+decorator, :func:`~reprlib.recursive_repr`, for detecting recursive calls to
:meth:`__repr__` and substituting a placeholder string instead:
>>> class MyList(list):
@@ -1011,7 +1011,7 @@ decorator, :func:`reprlib.recursive_repr`, for detecting recursive calls to
>>> print(m)
<'a'|'b'|'c'|...|'x'>
-(Contributed by Raymond Hettinger.)
+(Contributed by Raymond Hettinger in :issue:`9826` and :issue:`9840`.)
contextlib
----------