summaryrefslogtreecommitdiffstats
path: root/Doc/library
diff options
context:
space:
mode:
authorAlexander Belopolsky <alexander.belopolsky@gmail.com>2012-09-03 21:29:22 (GMT)
committerAlexander Belopolsky <alexander.belopolsky@gmail.com>2012-09-03 21:29:22 (GMT)
commite8677c038f94795f54de324e5d9235636c92afa0 (patch)
tree5389ac65723d20725760936603f85ac7aca7f33f /Doc/library
parentf73c69e06fbc96b8c26f6cfe2538bc2fd5ef4fda (diff)
downloadcpython-e8677c038f94795f54de324e5d9235636c92afa0.zip
cpython-e8677c038f94795f54de324e5d9235636c92afa0.tar.gz
cpython-e8677c038f94795f54de324e5d9235636c92afa0.tar.bz2
Issue #15855: updated related manual entries.
Diffstat (limited to 'Doc/library')
-rw-r--r--Doc/library/stdtypes.rst8
1 files changed, 7 insertions, 1 deletions
diff --git a/Doc/library/stdtypes.rst b/Doc/library/stdtypes.rst
index 90f3e54..3c038be 100644
--- a/Doc/library/stdtypes.rst
+++ b/Doc/library/stdtypes.rst
@@ -2687,13 +2687,19 @@ copying.
.. attribute:: shape
A tuple of integers the length of :attr:`ndim` giving the shape of the
- memory as a N-dimensional array.
+ memory as an N-dimensional array.
+
+ .. versionchanged:: 3.3
+ An empty tuple instead of None when ndim = 0.
.. attribute:: strides
A tuple of integers the length of :attr:`ndim` giving the size in bytes to
access each element for each dimension of the array.
+ .. versionchanged:: 3.3
+ An empty tuple instead of None when ndim = 0.
+
.. attribute:: suboffsets
Used internally for PIL-style arrays. The value is informational only.