fix wrong credit and issue id given in previous commit
authorGiampaolo Rodola' <g.rodola@gmail.com>
Tue, 22 Nov 2011 12:37:58 +0000 (13:37 +0100)
committerGiampaolo Rodola' <g.rodola@gmail.com>
Tue, 22 Nov 2011 12:37:58 +0000 (13:37 +0100)
Doc/whatsnew/3.3.rst
Misc/ACKS
Misc/NEWS

index 4122b9801189f992d502bfabfdb7c31d4c10a294..0aa4f151faf8551a11bb28d5edf58a0cc5223398 100644 (file)
@@ -577,16 +577,16 @@ sched
 
 * *timefunc* and *delayfunct* parameters of :class:`~sched.scheduler` class
   constructor are now optional and defaults to :func:`time.time` and
-  :func:`time.sleep` respectively.  (Contributed by Matt Mulsow in
-  :issue:`8809`)
+  :func:`time.sleep` respectively.  (Contributed by Chris Clark in
+  :issue:`13245`)
 
 * :meth:`~sched.scheduler.enter` and :meth:`~sched.scheduler.enterabs`
-  *argument* parameter is now optional.  (Contributed by Matt Mulsow in
-  :issue:`8809`)
+  *argument* parameter is now optional.  (Contributed by Chris Clark in
+  :issue:`13245`)
 
 * :meth:`~sched.scheduler.enter` and :meth:`~sched.scheduler.enterabs`
-  now accept a *kwargs* parameter.  (Contributed by Matt Mulsow in
-  :issue:`8809`)
+  now accept a *kwargs* parameter.  (Contributed by Chris Clark in
+  :issue:`13245`)
 
 Optimizations
 =============
index 1036065cae599522435eb99265059b2292ce8ac5..fe2af75a1c814a1330833cce78397f01513aa7a0 100644 (file)
--- a/Misc/ACKS
+++ b/Misc/ACKS
@@ -11,7 +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
+Chris Clark
 Rajiv Abraham
 David Abrahams
 Ron Adam
index 23a67eed2362a70746b5b568a6e5fb916cba0302..adc434c3cdb6b5c732a363fa16b4f5e6addb21fc 100644 (file)
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -390,7 +390,7 @@ 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.
+  Patch contributed by Chris Clark.
 
 - Issue #12328: Under Windows, refactor handling of Ctrl-C events and
   make _multiprocessing.win32.WaitForMultipleObjects interruptible when