[Python-checkins] [python/cpython] 13e96c: Fix bpo-30596: Add close() method to multiprocessi...
GitHub
noreply at github.com
Sat Jun 24 13:22:24 EDT 2017
Branch: refs/heads/master
Home: https://github.com/python/cpython
Commit: 13e96cc596d158b98996db3fa291086ea4afecd9
https://github.com/python/cpython/commit/13e96cc596d158b98996db3fa291086ea4afecd9
Author: Antoine Pitrou <pitrou at free.fr>
Date: 2017年06月24日 (2017年6月24日)
Changed paths:
M Doc/library/multiprocessing.rst
M Lib/multiprocessing/forkserver.py
M Lib/multiprocessing/popen_fork.py
M Lib/multiprocessing/popen_forkserver.py
M Lib/multiprocessing/popen_spawn_posix.py
M Lib/multiprocessing/popen_spawn_win32.py
M Lib/multiprocessing/process.py
M Lib/test/_test_multiprocessing.py
A Misc/NEWS.d/next/Library/2017-06-24-18-55-58.bpo-30596.VhB8iG.rst
Log Message:
-----------
Fix bpo-30596: Add close() method to multiprocessing.Process (#2010)
* Fix bpo-30596: Add close() method to multiprocessing.Process
* Raise ValueError if close() is called before the Process is finished running
* Add docs
* Add NEWS blurb
More information about the Python-checkins
mailing list