bpo-9842: Add references for using "..." as a placeholder to the index. (GH-10330)
https://github.com/python/cpython/commit/f8f9915f9585a5d4f4a4457ef43ac66607c... commit: f8f9915f9585a5d4f4a4457ef43ac66607c5f380 branch: 3.7 author: Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> committer: GitHub <noreply@github.com> date: 2018-11-20T10:07:54-08:00 summary: bpo-9842: Add references for using "..." as a placeholder to the index. (GH-10330) (cherry picked from commit 6c48bf2d9e1e18dfbfa35f7582ddd32f11f75129) Co-authored-by: Serhiy Storchaka <storchaka@gmail.com> files: M Doc/library/pprint.rst M Doc/library/reprlib.rst M Doc/library/textwrap.rst diff --git a/Doc/library/pprint.rst b/Doc/library/pprint.rst index 3922a768311c..deadf1820851 100644 --- a/Doc/library/pprint.rst +++ b/Doc/library/pprint.rst @@ -30,6 +30,8 @@ The :mod:`pprint` module defines one class: .. First the implementation class: +.. index:: single: ...; placeholder + .. class:: PrettyPrinter(indent=1, width=80, depth=None, stream=None, *, \ compact=False) diff --git a/Doc/library/reprlib.rst b/Doc/library/reprlib.rst index 5149bcf10f66..1a0c1b0dcd1a 100644 --- a/Doc/library/reprlib.rst +++ b/Doc/library/reprlib.rst @@ -42,6 +42,9 @@ In addition to size-limiting tools, the module also provides a decorator for detecting recursive calls to :meth:`__repr__` and substituting a placeholder string instead. + +.. index:: single: ...; placeholder + .. decorator:: recursive_repr(fillvalue="...") Decorator for :meth:`__repr__` methods to detect recursive calls within the diff --git a/Doc/library/textwrap.rst b/Doc/library/textwrap.rst index 438007d0028d..d254466c9a32 100644 --- a/Doc/library/textwrap.rst +++ b/Doc/library/textwrap.rst @@ -268,6 +268,8 @@ hyphenated words; only then will long words be broken if necessary, unless .. versionadded:: 3.4 + .. index:: single: ...; placeholder + .. attribute:: placeholder (default: ``' [...]'``) String that will appear at the end of the output
participants (1)
-
Miss Islington (bot)