Issue #15855: updated related manual entries.

This commit is contained in:
Alexander Belopolsky 2012-09-03 17:29:22 -04:00
parent f73c69e06f
commit e8677c038f
1 changed files with 7 additions and 1 deletions

View File

@ -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.