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
ede96146
Commit
ede96146
authored
Mar 23, 2014
by
Richard Oudkerk
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Issue #20990: Fix issues found by pyflakes for multiprocessing.
parent
13e8c9f1
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
16 additions
and
5 deletions
+16
-5
Lib/multiprocessing/spawn.py
Lib/multiprocessing/spawn.py
+10
-2
Lib/multiprocessing/synchronize.py
Lib/multiprocessing/synchronize.py
+4
-3
Misc/NEWS
Misc/NEWS
+2
-0
No files found.
Lib/multiprocessing/spawn.py
View file @
ede96146
...
...
@@ -64,7 +64,14 @@ def freeze_support():
Run code for process object if this in not the main process
'''
if
is_forking
(
sys
.
argv
):
main
()
kwds
=
{}
for
arg
in
sys
.
argv
[
2
:]:
name
,
value
=
arg
.
split
(
'='
)
if
value
==
'None'
:
kwds
[
name
]
=
None
else
:
kwds
[
name
]
=
int
(
value
)
spawn_main
(
**
kwds
)
sys
.
exit
()
...
...
@@ -73,7 +80,8 @@ def get_command_line(**kwds):
Returns prefix of command line used for spawning a child process
'''
if
getattr
(
sys
,
'frozen'
,
False
):
return
[
sys
.
executable
,
'--multiprocessing-fork'
]
tmp
=
' '
.
join
(
'%s=%r'
%
item
for
item
in
kwds
.
items
())
return
[
sys
.
executable
,
'--multiprocessing-fork'
]
+
tmp
else
:
prog
=
'from multiprocessing.spawn import spawn_main; spawn_main(%s)'
prog
%=
', '
.
join
(
'%s=%r'
%
item
for
item
in
kwds
.
items
())
...
...
Lib/multiprocessing/synchronize.py
View file @
ede96146
...
...
@@ -49,9 +49,10 @@ class SemLock(object):
_rand
=
tempfile
.
_RandomNameSequence
()
def
__init__
(
self
,
kind
,
value
,
maxvalue
,
*
,
ctx
):
ctx
=
ctx
or
get_context
()
ctx
=
ctx
.
get_context
()
unlink_now
=
sys
.
platform
==
'win32'
or
ctx
.
_name
==
'fork'
if
ctx
is
None
:
ctx
=
context
.
_default_context
.
get_context
()
name
=
ctx
.
get_start_method
()
unlink_now
=
sys
.
platform
==
'win32'
or
name
==
'fork'
for
i
in
range
(
100
):
try
:
sl
=
self
.
_semlock
=
_multiprocessing
.
SemLock
(
...
...
Misc/NEWS
View file @
ede96146
...
...
@@ -21,6 +21,8 @@ Core and Builtins
Library
-------
- Issue #20990: Fix issues found by pyflakes for multiprocessing.
- Issue #21015: SSL contexts will now automatically select an elliptic
curve for ECDH key exchange on OpenSSL 1.0.2 and later, and otherwise
default to "prime256v1".
...
...
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