Commit 93cd25d0 authored by Benjamin Peterson's avatar Benjamin Peterson

fix links to builtin repr function (closes #20573)

parent e789a1d8
...@@ -24,8 +24,9 @@ This module provides a class, an instance, and a function: ...@@ -24,8 +24,9 @@ This module provides a class, an instance, and a function:
.. class:: Repr() .. class:: Repr()
Class which provides formatting services useful in implementing functions Class which provides formatting services useful in implementing functions
similar to the built-in :func:`repr`; size limits for different object types similar to the built-in :ref:`repr() <func-repr>`; size limits for different
are added to avoid the generation of representations which are excessively long. object types are added to avoid the generation of representations which are
excessively long.
.. data:: aRepr .. data:: aRepr
...@@ -96,8 +97,8 @@ which format specific object types. ...@@ -96,8 +97,8 @@ which format specific object types.
.. method:: Repr.repr(obj) .. method:: Repr.repr(obj)
The equivalent to the built-in :func:`repr` that uses the formatting imposed by The equivalent to the built-in :ref:`repr() <func-repr>` that uses the
the instance. formatting imposed by the instance.
.. method:: Repr.repr1(obj, level) .. method:: Repr.repr1(obj, level)
......
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