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 GitHub
parent d07428607a
commit ca05666fed
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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`: Example usage of some of the methods of :class:`Process`:
.. doctest:: .. doctest::
:options: +ELLIPSIS
>>> import multiprocessing, time, signal >>> import multiprocessing, time, signal
>>> p = multiprocessing.Process(target=time.sleep, args=(1000,)) >>> p = multiprocessing.Process(target=time.sleep, args=(1000,))