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
58ba47f9
Commit
58ba47f9
authored
Jun 07, 2012
by
Richard Oudkerk
Browse files
Options
Browse Files
Download
Plain Diff
Merge fixes for #13854 and #12157.
parents
74482201
29471de4
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
55 additions
and
6 deletions
+55
-6
Lib/multiprocessing/pool.py
Lib/multiprocessing/pool.py
+1
-0
Lib/multiprocessing/process.py
Lib/multiprocessing/process.py
+3
-3
Lib/test/test_multiprocessing.py
Lib/test/test_multiprocessing.py
+45
-3
Misc/NEWS
Misc/NEWS
+6
-0
No files found.
Lib/multiprocessing/pool.py
View file @
58ba47f9
...
@@ -576,6 +576,7 @@ class MapResult(ApplyResult):
...
@@ -576,6 +576,7 @@ class MapResult(ApplyResult):
if
chunksize
<=
0
:
if
chunksize
<=
0
:
self
.
_number_left
=
0
self
.
_number_left
=
0
self
.
_event
.
set
()
self
.
_event
.
set
()
del
cache
[
self
.
_job
]
else
:
else
:
self
.
_number_left
=
length
//
chunksize
+
bool
(
length
%
chunksize
)
self
.
_number_left
=
length
//
chunksize
+
bool
(
length
%
chunksize
)
...
...
Lib/multiprocessing/process.py
View file @
58ba47f9
...
@@ -262,11 +262,11 @@ class Process(object):
...
@@ -262,11 +262,11 @@ class Process(object):
except
SystemExit
as
e
:
except
SystemExit
as
e
:
if
not
e
.
args
:
if
not
e
.
args
:
exitcode
=
1
exitcode
=
1
elif
type
(
e
.
args
[
0
])
is
int
:
elif
isinstance
(
e
.
args
[
0
],
int
)
:
exitcode
=
e
.
args
[
0
]
exitcode
=
e
.
args
[
0
]
else
:
else
:
sys
.
stderr
.
write
(
e
.
args
[
0
]
+
'
\
n
'
)
sys
.
stderr
.
write
(
str
(
e
.
args
[
0
])
+
'
\
n
'
)
exitcode
=
1
exitcode
=
0
if
isinstance
(
e
.
args
[
0
],
str
)
else
1
except
:
except
:
exitcode
=
1
exitcode
=
1
import
traceback
import
traceback
...
...
Lib/test/test_multiprocessing.py
View file @
58ba47f9
...
@@ -439,6 +439,36 @@ class _TestSubclassingProcess(BaseTestCase):
...
@@ -439,6 +439,36 @@ class _TestSubclassingProcess(BaseTestCase):
1
/
0
# MARKER
1
/
0
# MARKER
@
classmethod
def
_test_sys_exit
(
cls
,
reason
,
testfn
):
sys
.
stderr
=
open
(
testfn
,
'w'
)
sys
.
exit
(
reason
)
def
test_sys_exit
(
self
):
# See Issue 13854
if
self
.
TYPE
==
'threads'
:
return
testfn
=
test
.
support
.
TESTFN
self
.
addCleanup
(
test
.
support
.
unlink
,
testfn
)
for
reason
,
code
in
(([
1
,
2
,
3
],
1
),
(
'ignore this'
,
0
)):
p
=
self
.
Process
(
target
=
self
.
_test_sys_exit
,
args
=
(
reason
,
testfn
))
p
.
daemon
=
True
p
.
start
()
p
.
join
(
5
)
self
.
assertEqual
(
p
.
exitcode
,
code
)
with
open
(
testfn
,
'r'
)
as
f
:
self
.
assertEqual
(
f
.
read
().
rstrip
(),
str
(
reason
))
for
reason
in
(
True
,
False
,
8
):
p
=
self
.
Process
(
target
=
sys
.
exit
,
args
=
(
reason
,))
p
.
daemon
=
True
p
.
start
()
p
.
join
(
5
)
self
.
assertEqual
(
p
.
exitcode
,
reason
)
#
#
#
#
#
#
...
@@ -1342,6 +1372,18 @@ class _TestPool(BaseTestCase):
...
@@ -1342,6 +1372,18 @@ class _TestPool(BaseTestCase):
join
()
join
()
self
.
assertLess
(
join
.
elapsed
,
0.5
)
self
.
assertLess
(
join
.
elapsed
,
0.5
)
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
raising
():
def
raising
():
raise
KeyError
(
"key"
)
raise
KeyError
(
"key"
)
...
@@ -2487,7 +2529,7 @@ class ProcessesMixin(object):
...
@@ -2487,7 +2529,7 @@ class ProcessesMixin(object):
'Queue'
,
'Lock'
,
'RLock'
,
'Semaphore'
,
'BoundedSemaphore'
,
'Queue'
,
'Lock'
,
'RLock'
,
'Semaphore'
,
'BoundedSemaphore'
,
'Condition'
,
'Event'
,
'Value'
,
'Array'
,
'RawValue'
,
'Condition'
,
'Event'
,
'Value'
,
'Array'
,
'RawValue'
,
'RawArray'
,
'current_process'
,
'active_children'
,
'Pipe'
,
'RawArray'
,
'current_process'
,
'active_children'
,
'Pipe'
,
'connection'
,
'JoinableQueue'
'connection'
,
'JoinableQueue'
,
'Pool'
)))
)))
testcases_processes
=
create_test_cases
(
ProcessesMixin
,
type
=
'processes'
)
testcases_processes
=
create_test_cases
(
ProcessesMixin
,
type
=
'processes'
)
...
@@ -2501,7 +2543,7 @@ class ManagerMixin(object):
...
@@ -2501,7 +2543,7 @@ class ManagerMixin(object):
locals
().
update
(
get_attributes
(
manager
,
(
locals
().
update
(
get_attributes
(
manager
,
(
'Queue'
,
'Lock'
,
'RLock'
,
'Semaphore'
,
'BoundedSemaphore'
,
'Queue'
,
'Lock'
,
'RLock'
,
'Semaphore'
,
'BoundedSemaphore'
,
'Condition'
,
'Event'
,
'Value'
,
'Array'
,
'list'
,
'dict'
,
'Condition'
,
'Event'
,
'Value'
,
'Array'
,
'list'
,
'dict'
,
'Namespace'
,
'JoinableQueue'
'Namespace'
,
'JoinableQueue'
,
'Pool'
)))
)))
testcases_manager
=
create_test_cases
(
ManagerMixin
,
type
=
'manager'
)
testcases_manager
=
create_test_cases
(
ManagerMixin
,
type
=
'manager'
)
...
@@ -2515,7 +2557,7 @@ class ThreadsMixin(object):
...
@@ -2515,7 +2557,7 @@ class ThreadsMixin(object):
'Queue'
,
'Lock'
,
'RLock'
,
'Semaphore'
,
'BoundedSemaphore'
,
'Queue'
,
'Lock'
,
'RLock'
,
'Semaphore'
,
'BoundedSemaphore'
,
'Condition'
,
'Event'
,
'Value'
,
'Array'
,
'current_process'
,
'Condition'
,
'Event'
,
'Value'
,
'Array'
,
'current_process'
,
'active_children'
,
'Pipe'
,
'connection'
,
'dict'
,
'list'
,
'active_children'
,
'Pipe'
,
'connection'
,
'dict'
,
'list'
,
'Namespace'
,
'JoinableQueue'
'Namespace'
,
'JoinableQueue'
,
'Pool'
)))
)))
testcases_threads
=
create_test_cases
(
ThreadsMixin
,
type
=
'threads'
)
testcases_threads
=
create_test_cases
(
ThreadsMixin
,
type
=
'threads'
)
...
...
Misc/NEWS
View file @
58ba47f9
...
@@ -21,6 +21,12 @@ Core and Builtins
...
@@ -21,6 +21,12 @@ Core and Builtins
Library
Library
-------
-------
- Issue #13854: Make multiprocessing properly handle non-integer
non-string argument to SystemExit.
- Issue #12157: Make pool.map() empty iterables correctly. Initial
patch by mouad.
- Issue #11823: disassembly now shows argument counts on calls with keyword args.
- Issue #11823: disassembly now shows argument counts on calls with keyword args.
- Issue #14711: os.stat_float_times() has been deprecated.
- Issue #14711: os.stat_float_times() has been deprecated.
...
...
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