[Python-checkins] r88150 - python/branches/py3k/Doc/whatsnew/3.2.rst

raymond.hettinger python-checkins at python.org
Sun Jan 23 22:13:27 CET 2011


Author: raymond.hettinger
Date: Sun Jan 23 22:13:27 2011
New Revision: 88150

Log:
Add tracker references.


Modified:
   python/branches/py3k/Doc/whatsnew/3.2.rst

Modified: python/branches/py3k/Doc/whatsnew/3.2.rst
==============================================================================
--- python/branches/py3k/Doc/whatsnew/3.2.rst	(original)
+++ python/branches/py3k/Doc/whatsnew/3.2.rst	Sun Jan 23 22:13:27 2011
@@ -997,7 +997,7 @@
 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 @@
         >>> print(m)
         <'a'|'b'|'c'|...|'x'>
 
-(Contributed by Raymond Hettinger.)
+(Contributed by Raymond Hettinger in :issue:`9826` and :issue:`9840`.)
 
 contextlib
 ----------


More information about the Python-checkins mailing list