diff options
author | Mark Dickinson <dickinsm@gmail.com> | 2010-06-12 16:30:53 (GMT) |
---|---|---|
committer | Mark Dickinson <dickinsm@gmail.com> | 2010-06-12 16:30:53 (GMT) |
commit | fdb99f1563501b9a64f38874105028a373e7bd04 (patch) | |
tree | 4dbbd85030229805c72832c10155f5463913a3f9 /Modules/_struct.c | |
parent | aacfa95d2e650b10ef226261fd6f3d74ee781bb1 (diff) | |
download | cpython-fdb99f1563501b9a64f38874105028a373e7bd04.zip cpython-fdb99f1563501b9a64f38874105028a373e7bd04.tar.gz cpython-fdb99f1563501b9a64f38874105028a373e7bd04.tar.bz2 |
More struct module docs and docstring tweaks.
Diffstat (limited to 'Modules/_struct.c')
-rw-r--r-- | Modules/_struct.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Modules/_struct.c b/Modules/_struct.c index 6a2748f..02a8256 100644 --- a/Modules/_struct.c +++ b/Modules/_struct.c @@ -1605,7 +1605,7 @@ PyDoc_STRVAR(s_pack_into__doc__, \n\ Pack the values v1, v2, ... according to the format string S.format\n\ and write the packed bytes into the writable buffer buf starting at\n\ -offset. Note that the offset is not an optional argument. See\n\ +offset. Note that the offset is a required argument. See\n\ help(struct) for more on format strings."); static PyObject * @@ -1800,8 +1800,8 @@ calcsize(PyObject *self, PyObject *fmt) PyDoc_STRVAR(pack_doc, "pack(fmt, v1, v2, ...) -> bytes\n\ \n\ -Return a bytes object containing values v1, v2, ... packed according to\n\ -the format string fmt. See help(struct) for more on format strings."); +Return a bytes object containing the values v1, v2, ... packed according\n\ +to the format string fmt. See help(struct) for more on format strings."); static PyObject * pack(PyObject *self, PyObject *args) @@ -1834,7 +1834,7 @@ PyDoc_STRVAR(pack_into_doc, \n\ Pack the values v1, v2, ... according to the format string fmt and write\n\ the packed bytes into the writable buffer buf starting at offset. Note\n\ -that the offset is not an optional argument. See help(struct) for more\n\ +that the offset is a required argument. See help(struct) for more\n\ on format strings."); static PyObject * |