Branch: refs/heads/master Home: https://github.com/python/cpython Commit: 163468a766e16604bdea04a1ab808c0d3e729e5d https://github.com/python/cpython/commit/163468a766e16604bdea04a1ab808c0d3e729e5d Author: Gregory P. Smith <greg at krypto.org> Date: 2017年05月29日 (2017年5月29日) Changed paths: M Doc/c-api/sys.rst M Doc/library/os.rst M Lib/random.py M Lib/test/test_posix.py M Lib/threading.py M Modules/_posixsubprocess.c M Modules/clinic/posixmodule.c.h M Modules/posixmodule.c Log Message: ----------- bpo-16500: Don't use string constants for os.register_at_fork() behavior (#1834) Instead use keyword only arguments to os.register_at_fork for each of the scenarios. Updates the documentation for clarity.