[issue24943] Simplifying os.exec*

2015-08-27 Thread R. David Murray
R. David Murray added the comment: The functions in the os module are (for the most part) thin wrappers around OS apis (mostly posix). The 8 function reflect the posix functions. If you want a convenience interface, use the subprocess module. -- nosy: +r.david.murray resolution: ->

[issue24943] Simplifying os.exec*

2015-08-27 Thread Sworddragon
New submission from Sworddragon: I'm seeing in the documentation 8 different os.exec* functions that differ only slightly. I think from the way they are differing they could also all be merged into 1 function which could look like this: os.exec(file, args, env, use_path) - file is the path to