]> 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)
committerPablo Galindo <pablogsal@gmail.com>
Sat, 22 Oct 2022 19:05:40 +0000 (20:05 +0100)
(cherry picked from commit d78aa4e11a80653588229cc97119afae693d1c06)

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

index a51fc850fbc1efbfe13ba456d5f65f57e25ce5ed..7358ca1c0cad9988c906045b861d8ea6ca90021d 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,))