summaryrefslogtreecommitdiff
path: root/Doc/whatsnew/3.2.rst
diff options
context:
space:
mode:
authorRaymond Hettinger <python@rcn.com>2011-02-11 00:03:03 +0000
committerRaymond Hettinger <python@rcn.com>2011-02-11 00:03:03 +0000
commit566a4d0233091ffb563eb1aa1a3f9b54de324732 (patch)
treea48321ec46acc47698462bacfa2c77e8b0feac18 /Doc/whatsnew/3.2.rst
parentb71370b8f5967fc35d526815ef20622a5afc2ed4 (diff)
downloadcpython-566a4d0233091ffb563eb1aa1a3f9b54de324732.tar.gz
Insert missing section heading (noticed by Victor Stinner).
Diffstat (limited to 'Doc/whatsnew/3.2.rst')
-rw-r--r--Doc/whatsnew/3.2.rst27
1 files changed, 15 insertions, 12 deletions
diff --git a/Doc/whatsnew/3.2.rst b/Doc/whatsnew/3.2.rst
index eba70075ff..577c628d18 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
--------