]> granicus.if.org Git - python/commitdiff
Issue #1172711: Update What's New in Python 3.3 document for the struct module
authorVictor Stinner <victor.stinner@haypocalc.com>
Wed, 21 Sep 2011 01:20:03 +0000 (03:20 +0200)
committerVictor Stinner <victor.stinner@haypocalc.com>
Wed, 21 Sep 2011 01:20:03 +0000 (03:20 +0200)
Doc/whatsnew/3.3.rst

index 6fdc5aa9c159c2a98e71f02c402e91c011729cfa..2c96adf91213ce3c49881956f65fc2e546b42a35 100644 (file)
@@ -115,6 +115,17 @@ New module: :mod:`faulthandler`.
  * :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 @@ The :mod:`ssl` module has new functions:
   * :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