Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 56d3a03 commit 3e952d5Copy full SHA for 3e952d5
2 files changed
Lib/multiprocessing/forking.py
@@ -132,7 +132,7 @@ def poll(self, flag=os.WNOHANG):
132
def wait(self, timeout=None):
133
if self.returncode is None:
134
if timeout is not None:
135
- from .connection import wait
+ from multiprocessing.connection import wait
136
if not wait([self.sentinel], timeout):
137
return None
138
# This shouldn't block if wait() returned successfully.
Misc/NEWS
@@ -13,6 +13,8 @@ Core and Builtins
13
Library
14
-------
15
16
+- Issue #20633: Replace relative import by absolute import.
17
+
18
- Issue #20875: Prevent possible gzip "'read' is not defined" NameError.
19
Patch by Claudiu Popa.
20
0 commit comments