From: Ivan Kapeykin <5349983@gmail.com> Date: Mon, 3 Oct 2022 22:41:08 +0000 (+0300) Subject: multiprocessing docs: Remove extra option ELLIPSIS from section with code (#96625) X-Git-Tag: v3.12.0a1~294 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=d78aa4e11a80653588229cc97119afae693d1c06;p=thirdparty%2FPython%2Fcpython.git multiprocessing docs: Remove extra option ELLIPSIS from section with code (#96625) --- diff --git a/Doc/library/multiprocessing.rst b/Doc/library/multiprocessing.rst index d74fe92f20d0..6f6e7881598b 100644 --- a/Doc/library/multiprocessing.rst +++ b/Doc/library/multiprocessing.rst @@ -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,))