diff options
author | Charles-François Natali <cf.natali@gmail.com> | 2015-08-13 19:37:08 (GMT) |
---|---|---|
committer | Charles-François Natali <cf.natali@gmail.com> | 2015-08-13 19:37:08 (GMT) |
commit | 80d62e628b25502239b5a3dc7c5aaca3deaa7e9f (patch) | |
tree | cd6b9fb1b5aef0bb6f814ba4afeb1c70a2cd888b /Modules/posixmodule.c | |
parent | aa525d0cae47eac4610e3ae5531c1f92cab69c73 (diff) | |
download | cpython-80d62e628b25502239b5a3dc7c5aaca3deaa7e9f.zip cpython-80d62e628b25502239b5a3dc7c5aaca3deaa7e9f.tar.gz cpython-80d62e628b25502239b5a3dc7c5aaca3deaa7e9f.tar.bz2 |
Issue #23530: fix clinic comment.
Diffstat (limited to 'Modules/posixmodule.c')
-rw-r--r-- | Modules/posixmodule.c | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/Modules/posixmodule.c b/Modules/posixmodule.c index 23d74a3..4d25ed1 100644 --- a/Modules/posixmodule.c +++ b/Modules/posixmodule.c @@ -5767,7 +5767,7 @@ The affinity is returned as a set of CPU identifiers. static PyObject * os_sched_getaffinity_impl(PyModuleDef *module, pid_t pid) -/*[clinic end generated code: output=b431a8f310e369e7 input=eaf161936874b8a1]*/ +/*[clinic end generated code: output=b431a8f310e369e7 input=983ce7cb4a565980]*/ { int cpu, ncpus, count; size_t setsize; @@ -11201,14 +11201,16 @@ get_terminal_size(PyObject *self, PyObject *args) /*[clinic input] os.cpu_count -Return the number of CPUs in the system; return None if indeterminable. This -number is not equivalent to the number of CPUs the current process can use. -The number of usable CPUs can be obtained with ``len(os.sched_getaffinity(0))`` +Return the number of CPUs in the system; return None if indeterminable. + +This number is not equivalent to the number of CPUs the current process can +use. The number of usable CPUs can be obtained with +``len(os.sched_getaffinity(0))`` [clinic start generated code]*/ static PyObject * os_cpu_count_impl(PyModuleDef *module) -/*[clinic end generated code: output=c59ee7f6bce832b8 input=d55e2f8f3823a628]*/ +/*[clinic end generated code: output=c59ee7f6bce832b8 input=e7c8f4ba6dbbadd3]*/ { int ncpu = 0; #ifdef MS_WINDOWS |