Branch: refs/heads/master Home: https://github.com/python/cpython Commit: 896145d9d266ee2758cfcd7691238cbc1f9e1ab8 https://github.com/python/cpython/commit/896145d9d266ee2758cfcd7691238cbc1f9e1ab8 Author: Antoine Pitrou <pitrou at free.fr> Date: 2017年07月22日 (2017年7月22日) Changed paths: M Lib/multiprocessing/forkserver.py M Lib/test/_test_multiprocessing.py M Lib/test/libregrtest/refleak.py M Lib/test/support/__init__.py A Misc/NEWS.d/next/Library/2017-07-22-12-12-42.bpo-26732.lYLWBH.rst Log Message: ----------- bpo-26732: fix too many fds in processes started with the "forkserver" method (#2813) * bpo-26732: fix too many fds in processes started with the "forkserver" method A child process would inherit as many fds as the number of still-running children. * Add blurb and test comment