From 54b01498e37a1d9bbad02a3e8c3c8106f68e6820 Mon Sep 17 00:00:00 2001 From: Jesus Cea Date: Sat, 10 Sep 2011 01:53:19 +0200 Subject: [PATCH] Typo --- Modules/posixmodule.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Modules/posixmodule.c b/Modules/posixmodule.c index df597b887b3..153ddcd7a3f 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();