[Python-checkins] cpython (2.7): #14489: fix wrong link.

ezio.melotti python-checkins at python.org
Sun Mar 10 03:28:43 CET 2013


http://hg.python.org/cpython/rev/aea3167355fc
changeset:   82582:aea3167355fc
branch:      2.7
parent:      82578:61ec83956ba6
user:        Ezio Melotti <ezio.melotti at gmail.com>
date:        Sun Mar 10 04:28:28 2013 +0200
summary:
  #14489: fix wrong link.

files:
  Doc/library/functions.rst |  4 +++-
  1 files changed, 3 insertions(+), 1 deletions(-)


diff --git a/Doc/library/functions.rst b/Doc/library/functions.rst
--- a/Doc/library/functions.rst
+++ b/Doc/library/functions.rst
@@ -19,7 +19,7 @@
 :func:`bytearray`    :func:`float`      :func:`list`        :func:`raw_input`  :func:`unichr`
 :func:`callable`     :func:`format`     :func:`locals`      :func:`reduce`     :func:`unicode`
 :func:`chr`          |func-frozenset|_  :func:`long`        :func:`reload`     :func:`vars`
-:func:`classmethod`  :func:`getattr`    :func:`map`         :func:`repr`       :func:`xrange`
+:func:`classmethod`  :func:`getattr`    :func:`map`         |func-repr|_       :func:`xrange`
 :func:`cmp`          :func:`globals`    :func:`max`         :func:`reversed`   :func:`zip`
 :func:`compile`      :func:`hasattr`    |func-memoryview|_  :func:`round`      :func:`__import__`
 :func:`complex`      :func:`hash`       :func:`min`         |func-set|_        :func:`apply`
@@ -34,6 +34,7 @@
 .. |func-dict| replace:: ``dict()``
 .. |func-frozenset| replace:: ``frozenset()``
 .. |func-memoryview| replace:: ``memoryview()``
+.. |func-repr| replace:: ``repr()``
 .. |func-set| replace:: ``set()``
 
 
@@ -1179,6 +1180,7 @@
    continue to use the old class definition.  The same is true for derived classes.
 
 
+.. _func-repr:
 .. function:: repr(object)
 
    Return a string containing a printable representation of an object.  This is

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list