]> granicus.if.org Git - python/commitdiff
remove a mention of backtick repr
authorBenjamin Peterson <benjamin@python.org>
Sun, 12 Oct 2008 12:51:12 +0000 (12:51 +0000)
committerBenjamin Peterson <benjamin@python.org>
Sun, 12 Oct 2008 12:51:12 +0000 (12:51 +0000)
Doc/reference/datamodel.rst

index b1546632b9a88e624ba304f948b98c3e5f76e639..3c7fcfc193dd54c87ce64425e24a40d8d06d7fb7 100644 (file)
@@ -1108,15 +1108,14 @@ Basic customization
 
    .. index:: builtin: repr
 
-   Called by the :func:`repr` built-in function and by string conversions (reverse
-   quotes) to compute the "official" string representation of an object.  If at all
-   possible, this should look like a valid Python expression that could be used to
-   recreate an object with the same value (given an appropriate environment).  If
-   this is not possible, a string of the form ``<...some useful description...>``
-   should be returned.  The return value must be a string object. If a class
-   defines :meth:`__repr__` but not :meth:`__str__`, then :meth:`__repr__` is also
-   used when an "informal" string representation of instances of that class is
-   required.
+   Called by the :func:`repr` built-in function to compute the "official" string
+   representation of an object.  If at all possible, this should look like a
+   valid Python expression that could be used to recreate an object with the
+   same value (given an appropriate environment).  If this is not possible, a
+   string of the form ``<...some useful description...>`` should be returned.
+   The return value must be a string object. If a class defines :meth:`__repr__`
+   but not :meth:`__str__`, then :meth:`__repr__` is also used when an
+   "informal" string representation of instances of that class is required.
 
    This is typically used for debugging, so it is important that the representation
    is information-rich and unambiguous.