Commit 3e952d56 authored by Richard Oudkerk's avatar Richard Oudkerk

Issue #20633: Replace relative import by absolute import.

parent 56d3a03f
......@@ -132,7 +132,7 @@ if sys.platform != 'win32':
def wait(self, timeout=None):
if self.returncode is None:
if timeout is not None:
from .connection import wait
from multiprocessing.connection import wait
if not wait([self.sentinel], timeout):
return None
# This shouldn't block if wait() returned successfully.
......
......@@ -13,6 +13,8 @@ Core and Builtins
Library
-------
- Issue #20633: Replace relative import by absolute import.
- Issue #20875: Prevent possible gzip "'read' is not defined" NameError.
Patch by Claudiu Popa.
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment