[Python-checkins] cpython: Typo
jesus.cea
python-checkins at python.org
Sat Sep 10 01:53:22 CEST 2011
http://hg.python.org/cpython/rev/36923c7e72f2
changeset: 72329:36923c7e72f2
user: Jesus Cea <jcea at jcea.es>
date: Sat Sep 10 01:53:19 2011 +0200
summary:
Typo
files:
Modules/posixmodule.c | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/Modules/posixmodule.c b/Modules/posixmodule.c
--- a/Modules/posixmodule.c
+++ b/Modules/posixmodule.c
@@ -4743,9 +4743,9 @@
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();
--
Repository URL: http://hg.python.org/cpython
More information about the Python-checkins
mailing list