]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
multiprocessing docs: Remove extra option ELLIPSIS from section with code (#96625)
authorIvan Kapeykin <5349983@gmail.com>
Mon, 3 Oct 2022 22:41:08 +0000 (01:41 +0300)
committerGitHub <noreply@github.com>
Mon, 3 Oct 2022 22:41:08 +0000 (15:41 -0700)
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,))