Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Issue #25654: | Victor Stinner | 2016-03-25 | 1 | -7/+1 |
| | | | | | | | | | * multiprocessing: open file with closefd=False to avoid ResourceWarning * _test_multiprocessing: open file with O_EXCL to detect bugs in tests (if a previous test forgot to remove TESTFN) * test_sys_exit(): remove TESTFN after each loop iteration Initial patch written by Serhiy Storchaka. | ||||
* | Issue #23285: PEP 475 -- Retry system calls failing with EINTR. | Charles-François Natali | 2015-02-07 | 1 | -16/+2 |
| | |||||
* | Issue #21566: Make use of socket.listen() default backlog. | Charles-François Natali | 2014-07-23 | 1 | -1/+1 |
| | |||||
* | Issue #18999: Make multiprocessing use context objects. | Richard Oudkerk | 2013-10-16 | 1 | -101/+113 |
| | | | | | This allows different parts of a program to use different methods for starting processes without interfering with each other. | ||||
* | Issue #18934: multiprocessing: use selectors module. | Charles-François Natali | 2013-09-05 | 1 | -4/+10 |
| | |||||
* | Issue #18865: PEP 446 makes multiprocessing.util.pipe() unnecessary. | Richard Oudkerk | 2013-08-28 | 1 | -1/+1 |
| | |||||
* | Issue #18571: Implementation of the PEP 446: file descriptors and file handles | Victor Stinner | 2013-08-27 | 1 | -2/+2 |
| | | | | | are now created non-inheritable; add functions os.get/set_inheritable(), os.get/set_handle_inheritable() and socket.socket.get/set_inheritable(). | ||||
* | Stop making fork server have copy of semaphore_tracker_fd. | Richard Oudkerk | 2013-08-22 | 1 | -6/+7 |
| | |||||
* | Issue #18762: Fix EBADF error when using forkserver. | Richard Oudkerk | 2013-08-22 | 1 | -30/+25 |
| | |||||
* | Issue #18762: Print debug info on failure to create new forkserver process. | Richard Oudkerk | 2013-08-21 | 1 | -0/+15 |
| | | | | Also modify test code to hopefully avoid deadlock on failure. | ||||
* | Issue #8713: Support alternative start methods in multiprocessing on Unix. | Richard Oudkerk | 2013-08-14 | 1 | -0/+238 |
See http://hg.python.org/sandbox/sbt#spawn |