From: Jesus Cea Date: Fri, 9 Sep 2011 23:53:19 +0000 (+0200) Subject: Typo X-Git-Tag: v3.3.0a1~1555 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=54b01498e37a1d9bbad02a3e8c3c8106f68e6820;p=thirdparty%2FPython%2Fcpython.git Typo --- diff --git a/Modules/posixmodule.c b/Modules/posixmodule.c index df597b887b3f..153ddcd7a3f2 100644 --- a/Modules/posixmodule.c +++ b/Modules/posixmodule.c @@ -4743,9 +4743,9 @@ posix_sched_setscheduler(PyObject *self, PyObject *args) return NULL; /* - ** sched_setscheduler() returns 0 in Linux, but - ** the previous scheduling policy. - ** On error, -1 is returned in all Operative Systems. + ** sched_setscheduler() returns 0 in Linux, but the previous + ** scheduling policy under Solaris/Illumos, and others. + ** On error, -1 is returned in all Operating Systems. */ if (sched_setscheduler(pid, policy, ¶m) == -1) return posix_error();