https://github.com/python/cpython/commit/66b4150f6f001640521ae6c9571cd4325cd67394 commit: 66b4150f6f001640521ae6c9571cd4325cd67394 branch: master author: Julien Palard <julien at palard.fr> committer: GitHub <noreply at github.com> date: 2019年07月08日T23:08:07+02:00 summary: Doc: Fix example title. (GH-14639) files: M Doc/library/stdtypes.rst diff --git a/Doc/library/stdtypes.rst b/Doc/library/stdtypes.rst index 8575f8a72af3..9dd557fabaae 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)