diff options
author | Ivan Kapeykin <5349983@gmail.com> | 2022-10-03 22:41:08 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-10-03 22:41:08 (GMT) |
commit | d78aa4e11a80653588229cc97119afae693d1c06 (patch) | |
tree | c68f5d67f8c3e8a20dc902dcf66ecb0fccd1e5cc | |
parent | 07b8e85d0e29bc59a7a7d7d662db500c93980edb (diff) | |
download | cpython-d78aa4e11a80653588229cc97119afae693d1c06.zip cpython-d78aa4e11a80653588229cc97119afae693d1c06.tar.gz cpython-d78aa4e11a80653588229cc97119afae693d1c06.tar.bz2 |
multiprocessing docs: Remove extra option ELLIPSIS from section with code (#96625)
-rw-r--r-- | Doc/library/multiprocessing.rst | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/Doc/library/multiprocessing.rst b/Doc/library/multiprocessing.rst index d74fe92..6f6e788 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,)) |