]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
multiprocessing docs: Remove extra option ELLIPSIS from section with code (GH-96625)
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>
Mon, 3 Oct 2022 22:49:16 +0000 (15:49 -0700)
committerGitHub <noreply@github.com>
Mon, 3 Oct 2022 22:49:16 +0000 (15:49 -0700)
(cherry picked from commit d78aa4e11a80653588229cc97119afae693d1c06)

Co-authored-by: Ivan Kapeykin <5349983@gmail.com>
Doc/library/multiprocessing.rst

index 6a9ab240606f850fef8b2ed1a8d39cfcc1c925b6..48bccabe6a3111f31fb02e6a89c467f800d3046e 100644 (file)
@@ -657,7 +657,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,))