[Python-3000-checkins] r66373 - python/branches/py3k/Doc/library/stdtypes.rst

benjamin.peterson python-3000-checkins at python.org
Wed Sep 10 23:38:31 CEST 2008


Author: benjamin.peterson
Date: Wed Sep 10 23:38:31 2008
New Revision: 66373

Log:
make use of shorter attribute access

Modified:
   python/branches/py3k/Doc/library/stdtypes.rst

Modified: python/branches/py3k/Doc/library/stdtypes.rst
==============================================================================
--- python/branches/py3k/Doc/library/stdtypes.rst	(original)
+++ python/branches/py3k/Doc/library/stdtypes.rst	Wed Sep 10 23:38:31 2008
@@ -2319,8 +2319,8 @@
 
    .. attribute:: strides
 
-      A tuple of integers the length of :attr:`~memoryview.ndim` giving the size
-      in bytes to access each element for each dimension of the array.
+      A tuple of integers the length of :attr:`ndim` giving the size in bytes to
+      access each element for each dimension of the array.
 
    .. attribute:: size
 


More information about the Python-3000-checkins mailing list