diff options
author | Victor Stinner <victor.stinner@haypocalc.com> | 2011-09-21 01:20:03 (GMT) |
---|---|---|
committer | Victor Stinner <victor.stinner@haypocalc.com> | 2011-09-21 01:20:03 (GMT) |
commit | 811db3b71547896ad4d2731b906ca65f514e96b5 (patch) | |
tree | 387a7e79b8d7a235f1677b2257ead31597599238 | |
parent | 1c9f0c93ad26033aed79677fa0504af5a3cf0bbf (diff) | |
download | cpython-811db3b71547896ad4d2731b906ca65f514e96b5.zip cpython-811db3b71547896ad4d2731b906ca65f514e96b5.tar.gz cpython-811db3b71547896ad4d2731b906ca65f514e96b5.tar.bz2 |
Issue #1172711: Update What's New in Python 3.3 document for the struct module
-rw-r--r-- | 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 index 6fdc5aa..2c96adf 100644 --- a/Doc/whatsnew/3.3.rst +++ b/Doc/whatsnew/3.3.rst @@ -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 |