From: Raymond Hettinger Date: Sun, 23 Jan 2011 21:13:27 +0000 (+0000) Subject: Add tracker references. X-Git-Tag: v3.2rc2~77 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=cbc903bc7e9d3b95328c103ec0d6aa6886971a65;p=thirdparty%2FPython%2Fcpython.git Add tracker references. --- diff --git a/Doc/whatsnew/3.2.rst b/Doc/whatsnew/3.2.rst index c680d31640d9..ec3c24056044 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 ----------