]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Mark Favas's fix for typos in docstrings.
authorThomas Wouters <thomas@python.org>
Sat, 22 Jul 2000 16:34:15 +0000 (16:34 +0000)
committerThomas Wouters <thomas@python.org>
Sat, 22 Jul 2000 16:34:15 +0000 (16:34 +0000)
Modules/pyexpat.c

index c72b7384c76ea4de6a7d675e60cf3c4f9bc78805..6e04b2e7d2b9acbde986c8420c503ade33c5c97e 100644 (file)
@@ -424,7 +424,7 @@ finally:
 /* ---------------------------------------------------------------- */
 
 static char xmlparse_Parse__doc__[] = 
-"Parse(data[, isfinal])
+"Parse(data[, isfinal])\n\
 Parse XML data.  `isfinal' should be true at end of input.";
 
 static PyObject *
@@ -500,7 +500,7 @@ finally:
 }
 
 static char xmlparse_ParseFile__doc__[] = 
-"ParseFile(file)
+"ParseFile(file)\n\
 Parse XML data from file-like object.";
 
 static PyObject *
@@ -555,7 +555,7 @@ xmlparse_ParseFile(xmlparseobject *self, PyObject *args)
 }
 
 static char xmlparse_SetBase__doc__[] = 
-"SetBase(base_url)
+"SetBase(base_url)\n\
 Set the base URL for the parser.";
 
 static PyObject *
@@ -573,7 +573,7 @@ xmlparse_SetBase(xmlparseobject *self, PyObject *args)
 }
 
 static char xmlparse_GetBase__doc__[] = 
-"GetBase() -> url
+"GetBase() -> url\n\
 Return base URL string for the parser.";
 
 static PyObject *