From: Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> Date: Thu, 23 Feb 2023 00:02:38 +0000 (-0800) Subject: Fix syntax error in struct doc example (GH-102160) X-Git-Tag: v3.10.11~86 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=780dec8a9468a5f31c9f7ebfc4f673ed4ed9e0e8;p=thirdparty%2FPython%2Fcpython.git Fix syntax error in struct doc example (GH-102160) Missing closing ) reported on Discuss by Chukwudi Nwachukwu. (cherry picked from commit 8f647477f0ab5362741d261701b5bcd76bd69ec1) Co-authored-by: Terry Jan Reedy --- diff --git a/Doc/library/struct.rst b/Doc/library/struct.rst index 50d70731f775..12f247462fa6 100644 --- a/Doc/library/struct.rst +++ b/Doc/library/struct.rst @@ -371,7 +371,7 @@ ordering:: >>> from struct import * >>> pack(">bhl", 1, 2, 3) b'\x01\x00\x02\x00\x00\x00\x03' - >>> unpack('>bhl', b'\x01\x00\x02\x00\x00\x00\x03' + >>> unpack('>bhl', b'\x01\x00\x02\x00\x00\x00\x03') (1, 2, 3) >>> calcsize('>bhl') 7