Commit 5f52246f authored by Ezio Melotti's avatar Ezio Melotti

#14489: fix wrong link.

parent c5267047
...@@ -19,7 +19,7 @@ available. They are listed here in alphabetical order. ...@@ -19,7 +19,7 @@ available. They are listed here in alphabetical order.
:func:`bytearray` :func:`float` :func:`list` :func:`raw_input` :func:`unichr` :func:`bytearray` :func:`float` :func:`list` :func:`raw_input` :func:`unichr`
:func:`callable` :func:`format` :func:`locals` :func:`reduce` :func:`unicode` :func:`callable` :func:`format` :func:`locals` :func:`reduce` :func:`unicode`
:func:`chr` |func-frozenset|_ :func:`long` :func:`reload` :func:`vars` :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:`cmp` :func:`globals` :func:`max` :func:`reversed` :func:`zip`
:func:`compile` :func:`hasattr` |func-memoryview|_ :func:`round` :func:`__import__` :func:`compile` :func:`hasattr` |func-memoryview|_ :func:`round` :func:`__import__`
:func:`complex` :func:`hash` :func:`min` |func-set|_ :func:`apply` :func:`complex` :func:`hash` :func:`min` |func-set|_ :func:`apply`
...@@ -34,6 +34,7 @@ available. They are listed here in alphabetical order. ...@@ -34,6 +34,7 @@ available. They are listed here in alphabetical order.
.. |func-dict| replace:: ``dict()`` .. |func-dict| replace:: ``dict()``
.. |func-frozenset| replace:: ``frozenset()`` .. |func-frozenset| replace:: ``frozenset()``
.. |func-memoryview| replace:: ``memoryview()`` .. |func-memoryview| replace:: ``memoryview()``
.. |func-repr| replace:: ``repr()``
.. |func-set| replace:: ``set()`` .. |func-set| replace:: ``set()``
...@@ -1179,6 +1180,7 @@ available. They are listed here in alphabetical order. ...@@ -1179,6 +1180,7 @@ available. They are listed here in alphabetical order.
continue to use the old class definition. The same is true for derived classes. continue to use the old class definition. The same is true for derived classes.
.. _func-repr:
.. function:: repr(object) .. function:: repr(object)
Return a string containing a printable representation of an object. This is Return a string containing a printable representation of an object. This is
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment