From: Guido van Rossum Date: Wed, 12 Jan 1994 14:05:27 +0000 (+0000) Subject: os.exec -> os.execv X-Git-Tag: v1.0.1~39 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=46005662854c351e2e85bd5de2c89096d0e582cd;p=thirdparty%2FPython%2Fcpython.git os.exec -> os.execv --- diff --git a/Demo/stdwin/jukebox.py b/Demo/stdwin/jukebox.py index bc43cb5ae558..377078cfea0f 100755 --- a/Demo/stdwin/jukebox.py +++ b/Demo/stdwin/jukebox.py @@ -400,7 +400,7 @@ def sfplay(filename, args): pid = os.fork() if pid == 0: # Child - os.exec(SFPLAY, args) + os.execv(SFPLAY, args) # NOTREACHED else: # Parent