[issue19066] os.execv fails with spaced names on Windows

Richard Oudkerk report at bugs.python.org
Sun Sep 29 13:05:17 CEST 2013


Richard Oudkerk added the comment:

See

    http://bugs.python.org/issue436259

This is a problem with Window's implementation of spawn*() and exec*().  Just use subprocess instead which gets this stuff right.

Note that on Windows exec*() is useless: it just starts a subprocess and exits the current process.  You can use subprocess to get the same effect.

----------
nosy: +sbt

_______________________________________
Python tracker <report at bugs.python.org>
<http://bugs.python.org/issue19066>
_______________________________________


More information about the Python-bugs-list mailing list