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

This commit is contained in:
Ivan Kapeykin 2022-10-04 01:41:08 +03:00 committed by GitHub
parent 07b8e85d0e
commit d78aa4e11a
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`:
.. doctest::
:options: +ELLIPSIS
>>> import multiprocessing, time, signal
>>> p = multiprocessing.Process(target=time.sleep, args=(1000,))