Discussion:
[Python-3000-checkins] r66373 - python/branches/py3k/Doc/library/stdtypes.rst
benjamin.peterson
2008-09-10 21:38:31 UTC
Permalink
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

Loading...