changeset: 89927:0b2814fc53ae branch: 3.3 parent: 89808:df2dbeef46da user: Richard Oudkerk date: Sun Mar 23 12:42:28 2014 +0000 files: Lib/multiprocessing/forking.py Misc/NEWS description: Issue #20633: Replace relative import by absolute import. diff -r df2dbeef46da -r 0b2814fc53ae Lib/multiprocessing/forking.py --- a/Lib/multiprocessing/forking.py Mon Mar 17 07:36:45 2014 +0100 +++ b/Lib/multiprocessing/forking.py Sun Mar 23 12:42:28 2014 +0000 @@ -132,7 +132,7 @@ 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. diff -r df2dbeef46da -r 0b2814fc53ae Misc/NEWS --- a/Misc/NEWS Mon Mar 17 07:36:45 2014 +0100 +++ b/Misc/NEWS Sun Mar 23 12:42:28 2014 +0000 @@ -13,6 +13,8 @@ Library ------- +- Issue #20633: Replace relative import by absolute import. + - Issue #20875: Prevent possible gzip "'read' is not defined" NameError. Patch by Claudiu Popa.