From: Benjamin Peterson Date: Fri, 14 Feb 2014 19:10:39 +0000 (-0500) Subject: fix links to builtin repr function (closes #20573) X-Git-Tag: v2.7.7rc1~176 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=93cd25d0a89790eb2530ce7664a285889ada7833;p=python fix links to builtin repr function (closes #20573) --- diff --git a/Doc/library/repr.rst b/Doc/library/repr.rst index a9280bb431..b60418613b 100644 --- a/Doc/library/repr.rst +++ b/Doc/library/repr.rst @@ -24,8 +24,9 @@ This module provides a class, an instance, and a function: .. class:: Repr() Class which provides formatting services useful in implementing functions - similar to the built-in :func:`repr`; size limits for different object types - are added to avoid the generation of representations which are excessively long. + similar to the built-in :ref:`repr() `; size limits for different + object types are added to avoid the generation of representations which are + excessively long. .. data:: aRepr @@ -96,8 +97,8 @@ which format specific object types. .. method:: Repr.repr(obj) - The equivalent to the built-in :func:`repr` that uses the formatting imposed by - the instance. + The equivalent to the built-in :ref:`repr() ` that uses the + formatting imposed by the instance. .. method:: Repr.repr1(obj, level)