summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorGiampaolo Rodola' <g.rodola@gmail.com>2011-11-22 12:33:34 (GMT)
committerGiampaolo Rodola' <g.rodola@gmail.com>2011-11-22 12:33:34 (GMT)
commitbe55d99b3d0d289b2948fdcb6c8aa975687476d5 (patch)
tree64798196c6bb7ffb76a8630af119f07c239dd331 /Misc
parentca4f20782e57ca4c754f477b19d36ac23e456b39 (diff)
downloadcpython-be55d99b3d0d289b2948fdcb6c8aa975687476d5.zip
cpython-be55d99b3d0d289b2948fdcb6c8aa975687476d5.tar.gz
cpython-be55d99b3d0d289b2948fdcb6c8aa975687476d5.tar.bz2
Fix 13245:
sched.scheduler class constructor's timefunc and delayfunct parameters are now optional. scheduler.enter and scheduler.enterabs methods gained a new kwargs parameter. Patch contributed by Matt Mulsow.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/ACKS1
-rw-r--r--Misc/NEWS5
2 files changed, 6 insertions, 0 deletions
diff --git a/Misc/ACKS b/Misc/ACKS
index 952644b..1036065 100644
--- a/Misc/ACKS
+++ b/Misc/ACKS
@@ -11,6 +11,7 @@ Without you, I would've stopped working on Python long ago!
PS: In the standard Python distribution, this file is encoded in UTF-8
and the list is in rough alphabetical order by last names.
+Matt Mulsow
Rajiv Abraham
David Abrahams
Ron Adam
diff --git a/Misc/NEWS b/Misc/NEWS
index 6f7740b..23a67ee 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -387,6 +387,11 @@ Core and Builtins
Library
-------
+- Issue #13245: sched.scheduler class constructor's timefunc and
+ delayfunct parameters are now optional.
+ scheduler.enter and scheduler.enterabs methods gained a new kwargs parameter.
+ Patch contributed by Matt Mulsow.
+
- Issue #12328: Under Windows, refactor handling of Ctrl-C events and
make _multiprocessing.win32.WaitForMultipleObjects interruptible when
the wait_flag parameter is false. Patch by sbt.