From: Meador Inge Date: Wed, 21 Sep 2011 02:48:16 +0000 (-0500) Subject: Issue #1172711: Update What's New in Python 3.3 document for the array module. X-Git-Tag: v3.3.0a1~1509 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=c5dbb3dadf42218cd0ab7d25759bcdb6ac580965;p=thirdparty%2FPython%2Fcpython.git Issue #1172711: Update What's New in Python 3.3 document for the array module. The commit fixes 3c56e546dc60, which documented #1172711 as a struct module change; it is an array module change. --- diff --git a/Doc/whatsnew/3.3.rst b/Doc/whatsnew/3.3.rst index 5a0e7ade32da..717e4e4748df 100644 --- a/Doc/whatsnew/3.3.rst +++ b/Doc/whatsnew/3.3.rst @@ -68,6 +68,15 @@ New, Improved, and Deprecated Modules * Stub +array +----- + +The :mod:`array` module supports the :c:type:`long long` type using ``q`` and +``Q`` type codes. + +(Contributed by Oren Tirosh and Hirokazu Yamamoto in :issue:`1172711`) + + codecs ------ @@ -257,15 +266,6 @@ The :mod:`ssl` module has new functions: * :func:`~ssl.RAND_pseudo_bytes`: generate pseudo-random bytes. -struct ------- - -The :mod:`struct` module supports the :c:type:`long long` type using ``q`` and -``Q`` type codes. - -(Contributed by Oren Tirosh and Hirokazu Yamamoto in :issue:`1172711`) - - shutil ------