[Python-checkins] r88388 - python/branches/py3k/Doc/whatsnew/3.2.rst

raymond.hettinger python-checkins at python.org
Fri Feb 11 01:03:03 CET 2011


Author: raymond.hettinger
Date: Fri Feb 11 01:03:03 2011
New Revision: 88388

Log:
Insert missing section heading (noticed by Victor Stinner).


Modified:
   python/branches/py3k/Doc/whatsnew/3.2.rst

Modified: python/branches/py3k/Doc/whatsnew/3.2.rst
==============================================================================
--- python/branches/py3k/Doc/whatsnew/3.2.rst	(original)
+++ python/branches/py3k/Doc/whatsnew/3.2.rst	Fri Feb 11 01:03:03 2011
@@ -1810,21 +1810,24 @@
 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.
-
-  (Contributed by Giampaolo Rodolà; :issue:`8807`.)
-
-* :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:`~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:`6706`.)
+(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.
+
+Contributed by Giampaolo Rodolà; :issue:`6706`.)
 
 tempfile
 --------


More information about the Python-checkins mailing list