From: Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> Date: Mon, 3 Oct 2022 22:49:16 +0000 (-0700) Subject: multiprocessing docs: Remove extra option ELLIPSIS from section with code (GH-96625) X-Git-Tag: v3.10.8~73 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=17b49be00320be43566b862f61de5aac5109dbdd;p=thirdparty%2FPython%2Fcpython.git multiprocessing docs: Remove extra option ELLIPSIS from section with code (GH-96625) (cherry picked from commit d78aa4e11a80653588229cc97119afae693d1c06) Co-authored-by: Ivan Kapeykin <5349983@gmail.com> --- diff --git a/Doc/library/multiprocessing.rst b/Doc/library/multiprocessing.rst index 6a9ab240606f..48bccabe6a31 100644 --- a/Doc/library/multiprocessing.rst +++ b/Doc/library/multiprocessing.rst @@ -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,))