diff options
author | Thomas Wouters <thomas@python.org> | 2000-07-22 16:34:15 (GMT) |
---|---|---|
committer | Thomas Wouters <thomas@python.org> | 2000-07-22 16:34:15 (GMT) |
commit | 3531730a685d1472ce05e6a9a63f42ba51e0abe1 (patch) | |
tree | e3ef24698d84982745e456281193b4848fb78b0f | |
parent | 623511b7df11994469b83e7ea4ed77230703fce8 (diff) | |
download | cpython-3531730a685d1472ce05e6a9a63f42ba51e0abe1.zip cpython-3531730a685d1472ce05e6a9a63f42ba51e0abe1.tar.gz cpython-3531730a685d1472ce05e6a9a63f42ba51e0abe1.tar.bz2 |
Mark Favas's fix for typos in docstrings.
-rw-r--r-- | Modules/pyexpat.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Modules/pyexpat.c b/Modules/pyexpat.c index c72b738..6e04b2e 100644 --- a/Modules/pyexpat.c +++ b/Modules/pyexpat.c @@ -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 * |