diff options
author | Benjamin Peterson <benjamin@python.org> | 2008-09-10 21:38:31 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2008-09-10 21:38:31 (GMT) |
commit | 2409dc79d2df77d75d702ec7feeeacc3c44490d2 (patch) | |
tree | a510fd8182a1304f5711142725bfcd232c36f967 /Doc | |
parent | 0c8046511945149abc822e2a7d7bdba682bd9ed3 (diff) | |
download | cpython-2409dc79d2df77d75d702ec7feeeacc3c44490d2.zip cpython-2409dc79d2df77d75d702ec7feeeacc3c44490d2.tar.gz cpython-2409dc79d2df77d75d702ec7feeeacc3c44490d2.tar.bz2 |
make use of shorter attribute access
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/library/stdtypes.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/library/stdtypes.rst b/Doc/library/stdtypes.rst index 7f295a1..ea00a43 100644 --- a/Doc/library/stdtypes.rst +++ b/Doc/library/stdtypes.rst @@ -2319,8 +2319,8 @@ simple bytes or complex data structures. .. 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 |