]> granicus.if.org Git - python/commit
Issue #8513: os.get_exec_path() supports b'PATH' key and bytes value.
authorVictor Stinner <victor.stinner@haypocalc.com>
Tue, 18 May 2010 17:17:23 +0000 (17:17 +0000)
committerVictor Stinner <victor.stinner@haypocalc.com>
Tue, 18 May 2010 17:17:23 +0000 (17:17 +0000)
commitb745a74c99b9db0daab7289c6a1f0e386cd26644
tree3dd5e45a9311372a36ad280e3c1739ab573cdf9e
parent04b5684d002de5e3eb4232bb287c6884afb61bf3
Issue #8513: os.get_exec_path() supports b'PATH' key and bytes value.
subprocess.Popen() and os._execvpe() support bytes program name. Add
os.supports_bytes_environ flag: True if the native OS type of the environment
is bytes (eg. False on Windows).
Doc/library/os.rst
Lib/os.py
Lib/subprocess.py
Lib/test/test_os.py
Lib/test/test_subprocess.py
Misc/NEWS