[Python-checkins] multiprocessing docs: Remove extra option ELLIPSIS from section with code (#96625)

JelleZijlstra webhook-mailer at python.org
Mon Oct 3 18:41:16 EDT 2022


https://github.com/python/cpython/commit/d78aa4e11a80653588229cc97119afae693d1c06
commit: d78aa4e11a80653588229cc97119afae693d1c06
branch: main
author: Ivan Kapeykin <5349983 at gmail.com>
committer: JelleZijlstra <jelle.zijlstra at gmail.com>
date: 2022-10-03T15:41:08-07:00
summary:

multiprocessing docs: Remove extra option ELLIPSIS from section with code (#96625)

files:
M Doc/library/multiprocessing.rst

diff --git a/Doc/library/multiprocessing.rst b/Doc/library/multiprocessing.rst
index d74fe92f20d0..6f6e7881598b 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,))



More information about the Python-checkins mailing list