Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit 4fb1392

Browse filesBrowse files
committed
lint import
1 parent e5c867a commit 4fb1392
Copy full SHA for 4fb1392

File tree

Expand file treeCollapse file tree

1 file changed

+2
-2
lines changed
Filter options
Expand file treeCollapse file tree

1 file changed

+2
-2
lines changed

‎Lib/test/test_concurrent_futures/executor.py

Copy file name to clipboardExpand all lines: Lib/test/test_concurrent_futures/executor.py
+2-2Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import itertools
2-
from multiprocessing import Manager
2+
import multiprocessing
33
import threading
44
import time
55
import weakref
@@ -102,7 +102,7 @@ def test_map_with_buffersize_on_empty_iterable(self):
102102
self.assertListEqual(list(results), [])
103103

104104
def test_map_with_buffersize_when_buffer_becomes_full(self):
105-
manager = Manager()
105+
manager = multiprocessing.Manager()
106106
iterable = range(8)
107107
buffersize = 4
108108
buffered_results = manager.list()

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.