]> granicus.if.org Git - python/commitdiff
Issue #15855: updated related manual entries.
authorAlexander Belopolsky <alexander.belopolsky@gmail.com>
Mon, 3 Sep 2012 21:29:22 +0000 (17:29 -0400)
committerAlexander Belopolsky <alexander.belopolsky@gmail.com>
Mon, 3 Sep 2012 21:29:22 +0000 (17:29 -0400)
Doc/library/stdtypes.rst

index 90f3e54cd56e7a655f3133dba3e2787e85492007..3c038beec4f8afc65dfeeca30aad03585154a4eb 100644 (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.