Commit fb6fe268 authored by Alexander Belopolsky's avatar Alexander Belopolsky

Issue #15855: updated related manual entries.

parent 52242f01
...@@ -2687,13 +2687,19 @@ copying. ...@@ -2687,13 +2687,19 @@ copying.
.. attribute:: shape .. attribute:: shape
A tuple of integers the length of :attr:`ndim` giving the shape of the 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 .. attribute:: strides
A tuple of integers the length of :attr:`ndim` giving the size in bytes to A tuple of integers the length of :attr:`ndim` giving the size in bytes to
access each element for each dimension of the array. access each element for each dimension of the array.
.. versionchanged:: 3.3
An empty tuple instead of None when ndim = 0.
.. attribute:: suboffsets .. attribute:: suboffsets
Used internally for PIL-style arrays. The value is informational only. Used internally for PIL-style arrays. The value is informational only.
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment