diff options
author | Eli Bendersky <eliben@gmail.com> | 2013-01-13 13:15:52 (GMT) |
---|---|---|
committer | Eli Bendersky <eliben@gmail.com> | 2013-01-13 13:15:52 (GMT) |
commit | 3ed84421efd8ac9247fa84c87d4a2252f291b7e0 (patch) | |
tree | bf5ff934e469d217ffc0bacfc6ff8789c14e3d5d /Modules | |
parent | fa3965ab767bc85375634561cf9e4acf22eba5f2 (diff) | |
parent | 45839901433c874fdcea15f6492d72fb8687b54e (diff) | |
download | cpython-3ed84421efd8ac9247fa84c87d4a2252f291b7e0.zip cpython-3ed84421efd8ac9247fa84c87d4a2252f291b7e0.tar.gz cpython-3ed84421efd8ac9247fa84c87d4a2252f291b7e0.tar.bz2 |
Clean trailing whitespace in _elementtree.c
Diffstat (limited to 'Modules')
-rw-r--r-- | Modules/_elementtree.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Modules/_elementtree.c b/Modules/_elementtree.c index 3f357b0..274c65e 100644 --- a/Modules/_elementtree.c +++ b/Modules/_elementtree.c @@ -310,7 +310,7 @@ element_new(PyTypeObject *type, PyObject *args, PyObject *kwds) /* Helper function for extracting the attrib dictionary from a keywords dict. * This is required by some constructors/functions in this module that can - * either accept attrib as a keyword argument or all attributes splashed + * either accept attrib as a keyword argument or all attributes splashed * directly into *kwds. * If there is no 'attrib' keyword, return an empty dict. */ @@ -1977,7 +1977,7 @@ static PyObject * elementiter_next(ElementIterObject *it) { /* Sub-element iterator. - * + * * A short note on gettext: this function serves both the iter() and * itertext() methods to avoid code duplication. However, there are a few * small differences in the way these iterations work. Namely: @@ -3039,7 +3039,7 @@ expat_comment_handler(XMLParserObject* self, const XML_Char* comment_in) } } -static void +static void expat_start_doctype_handler(XMLParserObject *self, const XML_Char *doctype_name, const XML_Char *sysid, @@ -3244,7 +3244,7 @@ xmlparser_init(PyObject *self, PyObject *args, PyObject *kwds) self_xp->handle_doctype = PyObject_GetAttrString(target, "doctype"); PyErr_Clear(); - + /* configure parser */ EXPAT(SetUserData)(self_xp->parser, self_xp); EXPAT(SetElementHandler)( |