diff options
author | R David Murray <rdmurray@bitdance.com> | 2012-10-02 14:19:48 (GMT) |
---|---|---|
committer | R David Murray <rdmurray@bitdance.com> | 2012-10-02 14:19:48 (GMT) |
commit | 814a13dc3021c985fd5b0872491a50640e05778d (patch) | |
tree | 63848b914f409dd0e4295b3997a211cd5c38851a | |
parent | c89d28fdfc3654daf1d112e76d3b6cca80c5bb00 (diff) | |
parent | 994ce1a3c1fbab5b6444254573808b4108bd4522 (diff) | |
download | cpython-814a13dc3021c985fd5b0872491a50640e05778d.zip cpython-814a13dc3021c985fd5b0872491a50640e05778d.tar.gz cpython-814a13dc3021c985fd5b0872491a50640e05778d.tar.bz2 |
Merge: Add multiprocessing.Process.sentinel to whatsnew, mention SSLFakeFile removal.
-rw-r--r-- | Doc/whatsnew/3.3.rst | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/Doc/whatsnew/3.3.rst b/Doc/whatsnew/3.3.rst index f15962b..bdf90fa 100644 --- a/Doc/whatsnew/3.3.rst +++ b/Doc/whatsnew/3.3.rst @@ -1481,6 +1481,11 @@ multiprocessing connections. to override the default behavior of inheriting the ``daemon`` flag from the parent process (:issue:`6064`). +New attribute attribute :data:`multiprocessing.Process.sentinel` allows a +program to wait on multiple :class:`~multiprocessing.Process` objects at one +time using the appropriate OS primitives (for example, :mod:`select` on +posix systems). + nntplib ------- @@ -2278,6 +2283,10 @@ Porting Python code * The deprecated variable ``time.accept2dyear`` has been removed. +* The undocumented internal helper class ``SSLFakeFile`` has been + removed from :mod:`smtplib`, since its functionality has long been + provided directly by :meth:`socket.socket.makefile`. + Porting C code -------------- |