]> 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:48:00 +0000 (15:48 -0700)
committerGitHub <noreply@github.com>
Mon, 3 Oct 2022 22:48:00 +0000 (15:48 -0700)
(cherry picked from commit d78aa4e11a80653588229cc97119afae693d1c06)

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

index d74fe92f20d0cfec9f0043bf91e5f6b1857fb523..6f6e7881598b88b1fae8373a340e3efa4a2ced1d 100644 (file)
@@ -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,))