]> granicus.if.org Git - python/commitdiff
Add tracker references.
authorRaymond Hettinger <python@rcn.com>
Sun, 23 Jan 2011 21:13:27 +0000 (21:13 +0000)
committerRaymond Hettinger <python@rcn.com>
Sun, 23 Jan 2011 21:13:27 +0000 (21:13 +0000)
Doc/whatsnew/3.2.rst

index c680d31640d93f3a0e19b385054d96314f05456b..ec3c2405604413d971d8e35165ca383eb1bfd62b 100644 (file)
@@ -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
 ----------