mirror of
https://github.com/python/cpython.git
synced 2025-11-26 21:33:10 +00:00
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).
This commit is contained in:
parent
482e66a58a
commit
a6a3274aad
4 changed files with 4 additions and 4 deletions
|
|
@ -173,7 +173,7 @@ if sys.platform != 'win32':
|
|||
|
||||
else:
|
||||
|
||||
from ._multiprocessing import win32
|
||||
from _multiprocessing import win32
|
||||
|
||||
def Pipe(duplex=True):
|
||||
'''
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue