]> granicus.if.org Git - python/commitdiff
Merged revisions 81961 via svnmerge from
authorMark Dickinson <dickinsm@gmail.com>
Sat, 12 Jun 2010 19:44:22 +0000 (19:44 +0000)
committerMark Dickinson <dickinsm@gmail.com>
Sat, 12 Jun 2010 19:44:22 +0000 (19:44 +0000)
svn+ssh://pythondev@svn.python.org/python/branches/py3k

........
  r81961 | alexander.belopolsky | 2010-06-12 20:36:28 +0100 (Sat, 12 Jun 2010) | 1 line

  Issue #8973: Expanded Struct.__doc__.
........

Modules/_struct.c

index c3c79e76866bb1ef11051e5d673d6b1b04b2f7dd..222521b1dc1045fbb8bf81d7cca2e4437a635b14 100644 (file)
@@ -1669,7 +1669,11 @@ static struct PyMethodDef s_methods[] = {
     {NULL,       NULL}          /* sentinel */
 };
 
-PyDoc_STRVAR(s__doc__, "Compiled struct object");
+PyDoc_STRVAR(s__doc__, 
+"Struct(fmt) --> compiled struct object\n"
+"\n"
+"Return a new Struct object which writes and reads binary data according to\n"
+"the format string fmt.  See help(struct) for more on format strings.");
 
 #define OFF(x) offsetof(PyStructObject, x)