mirror of
https://github.com/python/cpython.git
synced 2025-08-03 16:39:00 +00:00
* import.c (MAGIC): Changed magic word to avoid confusion about exec
function vs. exec statement * bltinmodule.c: renamed the module to __builtin__. * posixmodule.c (posix_execv): renamed exec --> execv since it is now a reserved word.
This commit is contained in:
parent
b3b09c97ce
commit
89b3325dc4
3 changed files with 5 additions and 5 deletions
|
@ -582,7 +582,7 @@ posix__exit(self, args)
|
|||
/* XXX To do: exece, execp */
|
||||
|
||||
static object *
|
||||
posix_exec(self, args)
|
||||
posix_execv(self, args)
|
||||
object *self;
|
||||
object *args;
|
||||
{
|
||||
|
@ -592,7 +592,7 @@ posix_exec(self, args)
|
|||
int i, argc;
|
||||
object *(*getitem) PROTO((object *, int));
|
||||
|
||||
/* exec has two arguments: (path, argv), where
|
||||
/* execv has two arguments: (path, argv), where
|
||||
argv is a list or tuple of strings. */
|
||||
|
||||
if (!getargs(args, "(sO)", &path, &argv))
|
||||
|
@ -1180,7 +1180,7 @@ static struct methodlist posix_methods[] = {
|
|||
|
||||
#ifndef MSDOS
|
||||
{"_exit", posix__exit},
|
||||
{"exec", posix_exec},
|
||||
{"execv", posix_execv},
|
||||
{"fork", posix_fork},
|
||||
{"getegid", posix_getegid},
|
||||
{"geteuid", posix_geteuid},
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue