Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | bpo-38546: multiprocessing tests stop the resource tracker (GH-17641) | Victor Stinner | 2019-12-17 | 1 | -0/+13 |
| | | | | | | | | | | Multiprocessing and concurrent.futures tests now stop the resource tracker process when tests complete. Add ResourceTracker._stop() method to multiprocessing.resource_tracker. Add _cleanup_tests() helper function to multiprocessing.util: share code between multiprocessing and concurrent.futures tests. | ||||
* | bpo-36894: Fix regression in test_multiprocessing_spawn (no tests run on ↵ | Antoine Pitrou | 2019-05-13 | 1 | -4/+9 |
| | | | | Windows) (GH-13290) | ||||
* | bpo-36867: Make semaphore_tracker track other system resources (GH-13222) | Pierre Glaser | 2019-05-10 | 1 | -0/+213 |
The multiprocessing.resource_tracker replaces the multiprocessing.semaphore_tracker module. Other than semaphores, resource_tracker also tracks shared_memory segments. Patch by Pierre Glaser. |