[Python-checkins] cpython (3.3): Clean trailing whitespace in _elementtree.c

eli.bendersky python-checkins at python.org
Sun Jan 13 14:18:19 CET 2013


http://hg.python.org/cpython/rev/7e072816b197
changeset:   81479:7e072816b197
branch:      3.3
parent:      81470:623a7de80432
user:        Eli Bendersky <eliben at gmail.com>
date:        Sun Jan 13 05:14:47 2013 -0800
summary:
  Clean trailing whitespace in _elementtree.c

files:
  Modules/_elementtree.c |  8 ++++----
  1 files changed, 4 insertions(+), 4 deletions(-)


diff --git a/Modules/_elementtree.c b/Modules/_elementtree.c
--- a/Modules/_elementtree.c
+++ b/Modules/_elementtree.c
@@ -310,7 +310,7 @@
 
 /* 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 @@
 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 @@
     }
 }
 
-static void 
+static void
 expat_start_doctype_handler(XMLParserObject *self,
                             const XML_Char *doctype_name,
                             const XML_Char *sysid,
@@ -3244,7 +3244,7 @@
     self_xp->handle_doctype = PyObject_GetAttrString(target, "doctype");
 
     PyErr_Clear();
-    
+
     /* configure parser */
     EXPAT(SetUserData)(self_xp->parser, self_xp);
     EXPAT(SetElementHandler)(

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list