From: Thomas Heller Date: Fri, 31 Aug 2007 06:44:36 +0000 (+0000) Subject: Insert "startfile" into posix_methods again; it was accidentially X-Git-Tag: v3.0a1~21 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=8b7a95750ac5d89a447cdde98fad5a078ac54956;p=thirdparty%2FPython%2Fcpython.git Insert "startfile" into posix_methods again; it was accidentially removed in rev 55543. --- diff --git a/Modules/posixmodule.c b/Modules/posixmodule.c index 5f8cde601081..770679e55db1 100644 --- a/Modules/posixmodule.c +++ b/Modules/posixmodule.c @@ -6793,6 +6793,9 @@ static PyMethodDef posix_methods[] = { #ifdef HAVE_PLOCK {"plock", posix_plock, METH_VARARGS, posix_plock__doc__}, #endif /* HAVE_PLOCK */ +#ifdef MS_WINDOWS + {"startfile", win32_startfile, METH_VARARGS, win32_startfile__doc__}, +#endif #ifdef HAVE_SETUID {"setuid", posix_setuid, METH_VARARGS, posix_setuid__doc__}, #endif /* HAVE_SETUID */