Commit 8b7a9575 authored by Thomas Heller's avatar Thomas Heller

Insert "startfile" into posix_methods again; it was accidentially

removed in rev 55543.
parent fd5359c7
...@@ -6793,6 +6793,9 @@ static PyMethodDef posix_methods[] = { ...@@ -6793,6 +6793,9 @@ static PyMethodDef posix_methods[] = {
#ifdef HAVE_PLOCK #ifdef HAVE_PLOCK
{"plock", posix_plock, METH_VARARGS, posix_plock__doc__}, {"plock", posix_plock, METH_VARARGS, posix_plock__doc__},
#endif /* HAVE_PLOCK */ #endif /* HAVE_PLOCK */
#ifdef MS_WINDOWS
{"startfile", win32_startfile, METH_VARARGS, win32_startfile__doc__},
#endif
#ifdef HAVE_SETUID #ifdef HAVE_SETUID
{"setuid", posix_setuid, METH_VARARGS, posix_setuid__doc__}, {"setuid", posix_setuid, METH_VARARGS, posix_setuid__doc__},
#endif /* HAVE_SETUID */ #endif /* HAVE_SETUID */
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment