From: Julien Palard Date: Mon, 8 Jul 2019 21:08:07 +0000 (+0200) Subject: Doc: Fix example title. (GH-14639) X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=66b4150f6f001640521ae6c9571cd4325cd67394;p=python Doc: Fix example title. (GH-14639) --- diff --git a/Doc/library/stdtypes.rst b/Doc/library/stdtypes.rst index 8575f8a72a..9dd557faba 100644 --- a/Doc/library/stdtypes.rst +++ b/Doc/library/stdtypes.rst @@ -3815,7 +3815,7 @@ copying. >>> z.nbytes 48 - Cast 1D/unsigned char to 2D/unsigned long:: + Cast 1D/unsigned long to 2D/unsigned long:: >>> buf = struct.pack("L"*6, *list(range(6))) >>> x = memoryview(buf)