summaryrefslogtreecommitdiffstats
path: root/Doc/whatsnew/3.3.rst
diff options
context:
space:
mode:
authorGiampaolo Rodola' <g.rodola@gmail.com>2011-12-14 12:34:26 (GMT)
committerGiampaolo Rodola' <g.rodola@gmail.com>2011-12-14 12:34:26 (GMT)
commit73520d57ebfb1272d009a070191e749caebf64ae (patch)
tree1a8febdb66d40004af7a2668bd5b7d1249602cf5 /Doc/whatsnew/3.3.rst
parenta23d65ccfe3b8f618bf3dde4d0d27895e764367e (diff)
downloadcpython-73520d57ebfb1272d009a070191e749caebf64ae.zip
cpython-73520d57ebfb1272d009a070191e749caebf64ae.tar.gz
cpython-73520d57ebfb1272d009a070191e749caebf64ae.tar.bz2
Fix #8684: make sched.scheduler class thread-safe
Diffstat (limited to 'Doc/whatsnew/3.3.rst')
-rw-r--r--Doc/whatsnew/3.3.rst4
1 files changed, 4 insertions, 0 deletions
diff --git a/Doc/whatsnew/3.3.rst b/Doc/whatsnew/3.3.rst
index ae275fc..91d3f90 100644
--- a/Doc/whatsnew/3.3.rst
+++ b/Doc/whatsnew/3.3.rst
@@ -662,6 +662,10 @@ should be used. For example, this will send a ``'HEAD'`` request::
sched
-----
+* :class:`~sched.scheduler` class can now be safely used in multi-threaded
+ environments. (Contributed by Josiah Carlson and Giampaolo RodolĂ  in
+ :issue:`8684`)
+
* *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 Chris Clark in