]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Mark len call as a code snippet in stdtypes.rst. (GH-9804)
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>
Wed, 7 Nov 2018 17:54:41 +0000 (09:54 -0800)
committerGitHub <noreply@github.com>
Wed, 7 Nov 2018 17:54:41 +0000 (09:54 -0800)
(cherry picked from commit ca03f3b93ee5c2943a2b8cbf9447f99f835ec672)

Co-authored-by: Andrés Delfino <adelfino@gmail.com>
Doc/library/stdtypes.rst

index da16b0748ad0caac189d60cf1a04789b5417750e..968c9992961b1055e07bcca980f9259ddb0c5449 100644 (file)
@@ -3771,7 +3771,7 @@ copying.
 
       ``nbytes == product(shape) * itemsize == len(m.tobytes())``. This is
       the amount of space in bytes that the array would use in a contiguous
-      representation. It is not necessarily equal to len(m)::
+      representation. It is not necessarily equal to ``len(m)``::
 
          >>> import array
          >>> a = array.array('i', [1,2,3,4,5])