[Python-checkins] cpython (3.3): Add smtpd changes to whatsnew, and integrate 'other' section.

r.david.murray python-checkins at python.org
Sat Sep 29 17:43:36 CEST 2012


http://hg.python.org/cpython/rev/127abd16168a
changeset:   79253:127abd16168a
branch:      3.3
parent:      79251:970ca39480f4
user:        R David Murray <rdmurray at bitdance.com>
date:        Sat Sep 29 11:42:36 2012 -0400
summary:
  Add smtpd changes to whatsnew, and integrate 'other' section.

Also made the smtplib markup consistent with the rest of the markup.

files:
  Doc/whatsnew/3.3.rst |  47 +++++++++++++++++++++----------
  1 files changed, 31 insertions(+), 16 deletions(-)


diff --git a/Doc/whatsnew/3.3.rst b/Doc/whatsnew/3.3.rst
--- a/Doc/whatsnew/3.3.rst
+++ b/Doc/whatsnew/3.3.rst
@@ -1528,14 +1528,27 @@
 * :func:`signal.signal` and :func:`signal.siginterrupt` raise an OSError,
   instead of a RuntimeError: OSError has an errno attribute.
 
+
+smtpd
+-----
+
+* The :mod:`smtpd` module now supports :rfc:`5321` (extended SMTP) and :rfc:`1870`
+  (size extension).  Per the standard, these extensions are enabled if and only
+  if the client initiates the session with an ``EHLO`` command.
+
+  (Initial ``ELHO`` support by Alberto Trevino.  Size extension by Juhana
+  Jauhiainen.  Substantial additional work on the patch contributed by Michele
+  Orrù and Dan Boswell.  :issue:`8739`)
+
+
 smtplib
 -------
 
-The :class:`~smtplib.SMTP_SSL` constructor and the :meth:`~smtplib.SMTP.starttls`
-method now accept an SSLContext parameter to control parameters of the secure
-channel.
-
-(Contributed by Kasun Herath in :issue:`8809`)
+* The :class:`~smtplib.SMTP_SSL` constructor and the :meth:`~smtplib.SMTP.starttls`
+  method now accept an SSLContext parameter to control parameters of the secure
+  channel.
+
+  (Contributed by Kasun Herath in :issue:`8809`)
 
 
 socket
@@ -1996,14 +2009,16 @@
   (implemented in :issue:`14040`.)
 
 
-Other issues
-------------
-
-.. Issue #11591: When :program:`python` was started with :option:`-S`,
-   ``import site`` will not add site-specific paths to the module search
-   paths.  In previous versions, it did.  See changeset for doc changes in
-   various files.  Contributed by Carl Meyer with editions by Éric Araujo.
-
-.. Issue #10998: the -Q command-line flag and related artifacts have been
-   removed.  Code checking sys.flags.division_warning will need updating.
-   Contributed by Éric Araujo.
+Command Line Switch Changes
+---------------------------
+
+* The -Q command-line flag and related artifacts have been removed.  Code
+  checking sys.flags.division_warning will need updating.
+
+  (:issue:`10998`, contributed by Éric Araujo.)
+
+* When :program:`python` is started with :option:`-S`, ``import site``
+  will no longer add site-specific paths to the module search paths.  In
+  previous versions, it did.
+
+  (:issue:`11591`, contributed by Carl Meyer with editions by Éric Araujo.)

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list