diff options
author | Albert Villanova del Moral <8515462+albertvillanova@users.noreply.github.com> | 2023-10-09 05:36:01 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-10-09 05:36:01 (GMT) |
commit | 0df772f555d44f2e78a252e62b1d83b601ace96b (patch) | |
tree | ef2e8c5b0283bb53f87de8b1700de31adbcdcdab | |
parent | 892ee72b3622de30acd12576b59259fc69e2e40a (diff) | |
download | cpython-0df772f555d44f2e78a252e62b1d83b601ace96b.zip cpython-0df772f555d44f2e78a252e62b1d83b601ace96b.tar.gz cpython-0df772f555d44f2e78a252e62b1d83b601ace96b.tar.bz2 |
Remove unused imports in multiprocessing docs example (#109984)
-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 d19f911..31710f6 100644 --- a/Doc/library/multiprocessing.rst +++ b/Doc/library/multiprocessing.rst @@ -2623,7 +2623,6 @@ server:: The following code uses :func:`~multiprocessing.connection.wait` to wait for messages from multiple processes at once:: - import time, random from multiprocessing import Process, Pipe, current_process from multiprocessing.connection import wait |