Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
d44a4a27
Commit
d44a4a27
authored
Jun 06, 2012
by
Richard Oudkerk
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Issue #12157: pool.map() does not handle empty iterable correctly
Initial patch by mouad
parent
0a09f3e2
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
19 additions
and
3 deletions
+19
-3
Lib/multiprocessing/pool.py
Lib/multiprocessing/pool.py
+1
-0
Lib/test/test_multiprocessing.py
Lib/test/test_multiprocessing.py
+15
-3
Misc/NEWS
Misc/NEWS
+3
-0
No files found.
Lib/multiprocessing/pool.py
View file @
d44a4a27
...
...
@@ -576,6 +576,7 @@ class MapResult(ApplyResult):
if
chunksize
<=
0
:
self
.
_number_left
=
0
self
.
_ready
=
True
del
cache
[
self
.
_job
]
else
:
self
.
_number_left
=
length
//
chunksize
+
bool
(
length
%
chunksize
)
...
...
Lib/test/test_multiprocessing.py
View file @
d44a4a27
...
...
@@ -1152,6 +1152,18 @@ class _TestPool(BaseTestCase):
join
()
self
.
assertTrue
(
join
.
elapsed
<
0.2
)
def
test_empty_iterable
(
self
):
# See Issue 12157
p
=
self
.
Pool
(
1
)
self
.
assertEqual
(
p
.
map
(
sqr
,
[]),
[])
self
.
assertEqual
(
list
(
p
.
imap
(
sqr
,
[])),
[])
self
.
assertEqual
(
list
(
p
.
imap_unordered
(
sqr
,
[])),
[])
self
.
assertEqual
(
p
.
map_async
(
sqr
,
[]).
get
(),
[])
p
.
close
()
p
.
join
()
def
unpickleable_result
():
return
lambda
:
42
...
...
@@ -2113,7 +2125,7 @@ class ProcessesMixin(object):
'Queue'
,
'Lock'
,
'RLock'
,
'Semaphore'
,
'BoundedSemaphore'
,
'Condition'
,
'Event'
,
'Value'
,
'Array'
,
'RawValue'
,
'RawArray'
,
'current_process'
,
'active_children'
,
'Pipe'
,
'connection'
,
'JoinableQueue'
'connection'
,
'JoinableQueue'
,
'Pool'
)))
testcases_processes
=
create_test_cases
(
ProcessesMixin
,
type
=
'processes'
)
...
...
@@ -2127,7 +2139,7 @@ class ManagerMixin(object):
locals
().
update
(
get_attributes
(
manager
,
(
'Queue'
,
'Lock'
,
'RLock'
,
'Semaphore'
,
'BoundedSemaphore'
,
'Condition'
,
'Event'
,
'Value'
,
'Array'
,
'list'
,
'dict'
,
'Namespace'
,
'JoinableQueue'
'Namespace'
,
'JoinableQueue'
,
'Pool'
)))
testcases_manager
=
create_test_cases
(
ManagerMixin
,
type
=
'manager'
)
...
...
@@ -2141,7 +2153,7 @@ class ThreadsMixin(object):
'Queue'
,
'Lock'
,
'RLock'
,
'Semaphore'
,
'BoundedSemaphore'
,
'Condition'
,
'Event'
,
'Value'
,
'Array'
,
'current_process'
,
'active_children'
,
'Pipe'
,
'connection'
,
'dict'
,
'list'
,
'Namespace'
,
'JoinableQueue'
'Namespace'
,
'JoinableQueue'
,
'Pool'
)))
testcases_threads
=
create_test_cases
(
ThreadsMixin
,
type
=
'threads'
)
...
...
Misc/NEWS
View file @
d44a4a27
...
...
@@ -67,6 +67,9 @@ Core and Builtins
Library
-------
-
Issue
#
12157
:
Make
pool
.
map
()
empty
iterables
correctly
.
Initial
patch
by
mouad
.
-
Issue
#
14962
:
Update
text
coloring
in
IDLE
shell
window
after
changing
options
.
Patch
by
Roger
Serwy
.
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment