diff options
author | R David Murray <rdmurray@bitdance.com> | 2012-10-06 20:06:16 (GMT) |
---|---|---|
committer | R David Murray <rdmurray@bitdance.com> | 2012-10-06 20:06:16 (GMT) |
commit | 344174dc776243019f3cbdc2f57c8d808aea4450 (patch) | |
tree | 4c0c8a25a95459ad9a92f167c0cfc2e2c495c7bf /Doc/whatsnew/3.3.rst | |
parent | ef4d286770ab264ffc07c7f25385c1e226f3eb4a (diff) | |
download | cpython-344174dc776243019f3cbdc2f57c8d808aea4450.zip cpython-344174dc776243019f3cbdc2f57c8d808aea4450.tar.gz cpython-344174dc776243019f3cbdc2f57c8d808aea4450.tar.bz2 |
Fix typos.
Diffstat (limited to 'Doc/whatsnew/3.3.rst')
-rw-r--r-- | Doc/whatsnew/3.3.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/whatsnew/3.3.rst b/Doc/whatsnew/3.3.rst index 1fef8d3..7dee076 100644 --- a/Doc/whatsnew/3.3.rst +++ b/Doc/whatsnew/3.3.rst @@ -1946,10 +1946,10 @@ threading --------- :class:`threading.Condition`, :class:`threading.Semaphore`, -:class:`threading.BoundedSempaphore`, :class:`threading.Event`, and +:class:`threading.BoundedSemaphore`, :class:`threading.Event`, and :class:`threading.Timer`, all of which used to be factory functions returning a class instance, are now classes and may be subclassed. (Contributed by Éric -Araujo in :issue:`109681`). +Araujo in :issue:`10968`). The :class:`threading.Thread` constructor now accepts a ``daemon`` keyword argument to override the default behavior of inheriting the ``deamon`` flag |