diff options
author | Chris Jerdonek <chris.jerdonek@gmail.com> | 2012-11-21 13:32:44 (GMT) |
---|---|---|
committer | Chris Jerdonek <chris.jerdonek@gmail.com> | 2012-11-21 13:32:44 (GMT) |
commit | 777db2d838f5c6feab9025c35a5b429dfb3248b1 (patch) | |
tree | fce30d617f4f5d004fe1303af6d4a15f24988aae /Doc | |
parent | 17fc44c9b3040538839f63d344b98ad5a904d520 (diff) | |
download | cpython-777db2d838f5c6feab9025c35a5b429dfb3248b1.zip cpython-777db2d838f5c6feab9025c35a5b429dfb3248b1.tar.gz cpython-777db2d838f5c6feab9025c35a5b429dfb3248b1.tar.bz2 |
Fix label in docs (from issue #13538).
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/reference/datamodel.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/reference/datamodel.rst b/Doc/reference/datamodel.rst index 8bbbc99..4bad2d5 100644 --- a/Doc/reference/datamodel.rst +++ b/Doc/reference/datamodel.rst @@ -1153,7 +1153,7 @@ Basic customization Called by :func:`str(object) <str>` and the built-in functions :func:`format` and :func:`print` to compute the "informal" or nicely printable string representation of an object. The return value must be a - :ref:`string <textseq>` object. + :ref:`string <typesseq>` object. This method differs from :meth:`object.__repr__` in that there is no expectation that :meth:`__str__` return a valid Python expression: a more |