[Python-checkins] cpython: Issue #1172711: Update What's New in Python 3.3 document for the struct module

victor.stinner python-checkins at python.org
Wed Sep 21 03:20:07 CEST 2011


http://hg.python.org/cpython/rev/3c56e546dc60
changeset:   72431:3c56e546dc60
user:        Victor Stinner <victor.stinner at haypocalc.com>
date:        Wed Sep 21 03:20:03 2011 +0200
summary:
  Issue #1172711: Update What's New in Python 3.3 document for the struct module

files:
  Doc/whatsnew/3.3.rst |  21 +++++++++++++++------
  1 files changed, 15 insertions(+), 6 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
@@ -115,6 +115,17 @@
  * :option:`-X` ``faulthandler``
 
 
+ftplib
+------
+
+The :class:`~ftplib.FTP_TLS` class now provides a new
+:func:`~ftplib.FTP_TLS.ccc` function to revert control channel back to
+plaintex.  This can be useful to take advantage of firewalls that know how to
+handle NAT with non-secure FTP without opening fixed ports.
+
+(Contributed by Giampaolo Rodolà in :issue:`12139`)
+
+
 math
 ----
 
@@ -242,15 +253,13 @@
   * :func:`~ssl.RAND_pseudo_bytes`: generate pseudo-random bytes.
 
 
-ftplib
+struct
 ------
 
-The :class:`~ftplib.FTP_TLS` class now provides a new
-:func:`~ftplib.FTP_TLS.ccc` function to revert control channel back to
-plaintex.  This can be useful to take advantage of firewalls that know how to
-handle NAT with non-secure FTP without opening fixed ports.
+The :mod:`struct` module supports the :c:type:`long long` type using ``q`` and
+``Q`` type codes.
 
-(Contributed by Giampaolo Rodolà in :issue:`12139`)
+(Contributed by Oren Tirosh and Hirokazu Yamamoto in :issue:`1172711`)
 
 
 shutil

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


More information about the Python-checkins mailing list