From 6aa8bc3442ff4be718e6c8bcd807a84b403c81c7 Mon Sep 17 00:00:00 2001 From: Brian Curtin Date: Wed, 4 Aug 2010 15:54:19 +0000 Subject: Merged revisions 83722 via svnmerge from svn+ssh://pythondev@svn.python.org/python/branches/py3k ........ r83722 | brian.curtin | 2010-08-04 10:47:24 -0500 (Wed, 04 Aug 2010) | 7 lines Fix #9513 to remove relative imports from multiprocessing. The test suite currently skips test_multiprocessing on Windows because it fails on finding _multiprocessing in several win32-specific blocks. Removing the relative import lets this through and allows the test to run (and pass). ........ --- Lib/multiprocessing/heap.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Lib/multiprocessing/heap.py') diff --git a/Lib/multiprocessing/heap.py b/Lib/multiprocessing/heap.py index ab6cf1610b..5d27b27ac3 100644 --- a/Lib/multiprocessing/heap.py +++ b/Lib/multiprocessing/heap.py @@ -26,7 +26,7 @@ __all__ = ['BufferWrapper'] if sys.platform == 'win32': - from ._multiprocessing import win32 + from _multiprocessing import win32 class Arena(object): -- cgit v1.2.1