multiprocessing docs: Remove extra option ELLIPSIS from section with code (GH-96625)

(cherry picked from commit d78aa4e11a)

Co-authored-by: Ivan Kapeykin <5349983@gmail.com>
This commit is contained in:
Miss Islington (bot) 2022-10-03 15:48:00 -07:00 committed by Pablo Galindo
parent 4f254f6120
commit 208701e037
No known key found for this signature in database
GPG Key ID: FFE87404168BD847
1 changed files with 0 additions and 1 deletions

View 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,))