diff options
author | Thomas Heller <theller@ctypes.org> | 2007-08-31 06:44:36 (GMT) |
---|---|---|
committer | Thomas Heller <theller@ctypes.org> | 2007-08-31 06:44:36 (GMT) |
commit | 8b7a95750ac5d89a447cdde98fad5a078ac54956 (patch) | |
tree | 1e0decd071662e5c30b6080c0ba0f3b4ca42827d | |
parent | fd5359c772ef184dc4ece064ac77018dfbaf614d (diff) | |
download | cpython-8b7a95750ac5d89a447cdde98fad5a078ac54956.zip cpython-8b7a95750ac5d89a447cdde98fad5a078ac54956.tar.gz cpython-8b7a95750ac5d89a447cdde98fad5a078ac54956.tar.bz2 |
Insert "startfile" into posix_methods again; it was accidentially
removed in rev 55543.
-rw-r--r-- | Modules/posixmodule.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Modules/posixmodule.c b/Modules/posixmodule.c index 5f8cde6..770679e 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 */ |