mirror of
https://github.com/python/cpython.git
synced 2025-08-04 08:59:19 +00:00
Oops, left in a non-standard multi-line doc string that GCC finds okay
but other compilers don't like.
This commit is contained in:
parent
8b0d95f06e
commit
9897f0f847
1 changed files with 4 additions and 4 deletions
|
@ -1208,10 +1208,10 @@ struct_pack(self, args)
|
|||
}
|
||||
|
||||
|
||||
static char unpack__doc__[] =
|
||||
"unpack(fmt, string) -> (v1, v2, ...)
|
||||
Unpack the string, containing packed C structure data, according\n"
|
||||
"to fmt. Requires len(string)==calcsize(fmt).\n\
|
||||
static char unpack__doc__[] = "\
|
||||
unpack(fmt, string) -> (v1, v2, ...)\n\
|
||||
Unpack the string, containing packed C structure data, according\n\
|
||||
to fmt. Requires len(string)==calcsize(fmt).\n\
|
||||
See struct.__doc__ for more on format strings.";
|
||||
|
||||
static PyObject *
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue