summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2011-08-02 22:30:04 (GMT)
committerBenjamin Peterson <benjamin@python.org>2011-08-02 22:30:04 (GMT)
commit94b580d423524188bcf7136f9829fb68eb6d15d3 (patch)
tree2d6d7b9a428393c23a865b7a0e01e574b5d7a18e /Misc
parent4e4d5d2a73688bf42e9789b336b9490a8569cba5 (diff)
downloadcpython-94b580d423524188bcf7136f9829fb68eb6d15d3.zip
cpython-94b580d423524188bcf7136f9829fb68eb6d15d3.tar.gz
cpython-94b580d423524188bcf7136f9829fb68eb6d15d3.tar.bz2
expose sched.h functions (closes #12655)
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS5
1 files changed, 5 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 1120597..95aec07 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -251,6 +251,11 @@ Core and Builtins
Library
-------
+- Issue #12655: Expose functions from sched.h in the os module: sched_yield(),
+ sched_setscheduler(), sched_getscheduler(), sched_setparam(),
+ sched_get_min_priority(), sched_get_max_priority(), sched_rr_get_interval(),
+ sched_getaffinity(), sched_setaffinity().
+
- Issues #11104, #8688: Fix the behavior of distutils' sdist command with
manually-maintained MANIFEST files.