summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorGregory P. Smith <greg@mad-scientist.com>2010-02-27 07:22:22 (GMT)
committerGregory P. Smith <greg@mad-scientist.com>2010-02-27 07:22:22 (GMT)
commitb6e8c7e8fb750e44b387557ad19afe2ccfe69f7c (patch)
tree25e5b445c8d511dc4c18f3c40196f69674577cdf /Misc
parent9a816974942a170a082bcef01a11aca806e854fe (diff)
downloadcpython-b6e8c7e8fb750e44b387557ad19afe2ccfe69f7c.zip
cpython-b6e8c7e8fb750e44b387557ad19afe2ccfe69f7c.tar.gz
cpython-b6e8c7e8fb750e44b387557ad19afe2ccfe69f7c.tar.bz2
Add an os.get_exec_path() function to return the list of directories
that launching a subprocess will search for the executable. Refactors some code in os._execvpe().
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 81dfbc0..8ce22ad 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -701,6 +701,9 @@ Library
- Issue #6218: io.StringIO and io.BytesIO instances are now picklable.
+- The os.get_exec_path() function to return the list of directories that will
+ be searched for an executable when launching a subprocess was added.
+
Extension Modules
-----------------