diff options
author | Raymond Hettinger <python@rcn.com> | 2011-02-11 00:03:03 (GMT) |
---|---|---|
committer | Raymond Hettinger <python@rcn.com> | 2011-02-11 00:03:03 (GMT) |
commit | ed92b5a46bbce7c4caa8c92718fb3d6c6f6b6099 (patch) | |
tree | c012d35c9b27c5d090c984797bf30424d265ad8e /Doc | |
parent | 73acad1fa2634cb4ec77d8c98bdcd1a8b9c031ed (diff) | |
download | cpython-ed92b5a46bbce7c4caa8c92718fb3d6c6f6b6099.zip cpython-ed92b5a46bbce7c4caa8c92718fb3d6c6f6b6099.tar.gz cpython-ed92b5a46bbce7c4caa8c92718fb3d6c6f6b6099.tar.bz2 |
Insert missing section heading (noticed by Victor Stinner).
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/whatsnew/3.2.rst | 27 |
1 files changed, 15 insertions, 12 deletions
diff --git a/Doc/whatsnew/3.2.rst b/Doc/whatsnew/3.2.rst index eba7007..577c628 100644 --- a/Doc/whatsnew/3.2.rst +++ b/Doc/whatsnew/3.2.rst @@ -1810,21 +1810,24 @@ functions and methods affected are :func:`~random.randrange`, poplib ------ -* :class:`~poplib.POP3_SSL` class now accepts a *context* parameter, which is a - :class:`ssl.SSLContext` object allowing bundling SSL configuration options, - certificates and private keys into a single (potentially long-lived) - structure. +:class:`~poplib.POP3_SSL` class now accepts a *context* parameter, which is a +:class:`ssl.SSLContext` object allowing bundling SSL configuration options, +certificates and private keys into a single (potentially long-lived) +structure. + +(Contributed by Giampaolo Rodolà; :issue:`8807`.) - (Contributed by Giampaolo Rodolà; :issue:`8807`.) +asyncore +-------- -* :class:`asyncore.dispatcher` now provides a - :meth:`~asyncore.dispatcher.handle_accepted()` method - returning a `(sock, addr)` pair which is called when a connection has actually - been established with a new remote endpoint. This is supposed to be used as a - replacement for old :meth:`~asyncore.dispatcher.handle_accept()` and avoids - the user to call :meth:`~asyncore.dispatcher.accept()` directly. +:class:`asyncore.dispatcher` now provides a +:meth:`~asyncore.dispatcher.handle_accepted()` method +returning a `(sock, addr)` pair which is called when a connection has actually +been established with a new remote endpoint. This is supposed to be used as a +replacement for old :meth:`~asyncore.dispatcher.handle_accept()` and avoids +the user to call :meth:`~asyncore.dispatcher.accept()` directly. - (Contributed by Giampaolo Rodolà; :issue:`6706`.) +Contributed by Giampaolo Rodolà; :issue:`6706`.) tempfile -------- |