summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorIvan Kapeykin <5349983@gmail.com>2022-10-03 22:41:08 (GMT)
committerGitHub <noreply@github.com>2022-10-03 22:41:08 (GMT)
commitd78aa4e11a80653588229cc97119afae693d1c06 (patch)
treec68f5d67f8c3e8a20dc902dcf66ecb0fccd1e5cc
parent07b8e85d0e29bc59a7a7d7d662db500c93980edb (diff)
downloadcpython-d78aa4e11a80653588229cc97119afae693d1c06.zip
cpython-d78aa4e11a80653588229cc97119afae693d1c06.tar.gz
cpython-d78aa4e11a80653588229cc97119afae693d1c06.tar.bz2
multiprocessing docs: Remove extra option ELLIPSIS from section with code (#96625)
-rw-r--r--Doc/library/multiprocessing.rst1
1 files changed, 0 insertions, 1 deletions
diff --git a/Doc/library/multiprocessing.rst b/Doc/library/multiprocessing.rst
index d74fe92..6f6e788 100644
--- a/Doc/library/multiprocessing.rst
+++ b/Doc/library/multiprocessing.rst
@@ -674,7 +674,6 @@ The :mod:`multiprocessing` package mostly replicates the API of the
Example usage of some of the methods of :class:`Process`:
.. doctest::
- :options: +ELLIPSIS
>>> import multiprocessing, time, signal
>>> p = multiprocessing.Process(target=time.sleep, args=(1000,))