diff options
author | Meador Inge <meadori@gmail.com> | 2011-09-21 02:48:16 (GMT) |
---|---|---|
committer | Meador Inge <meadori@gmail.com> | 2011-09-21 02:48:16 (GMT) |
commit | c5dbb3dadf42218cd0ab7d25759bcdb6ac580965 (patch) | |
tree | 0b6d7a1a812df99ad39afe996da618d6b991af0c | |
parent | 41c98a3207db26bd28c92e0c5df0a4849b3b7d83 (diff) | |
download | cpython-c5dbb3dadf42218cd0ab7d25759bcdb6ac580965.zip cpython-c5dbb3dadf42218cd0ab7d25759bcdb6ac580965.tar.gz cpython-c5dbb3dadf42218cd0ab7d25759bcdb6ac580965.tar.bz2 |
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.
-rw-r--r-- | Doc/whatsnew/3.3.rst | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/Doc/whatsnew/3.3.rst b/Doc/whatsnew/3.3.rst index 5a0e7ad..717e4e4 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 ------ |