From 350aed3fdb9f1e73e69655e53f44ca6a91c196da Mon Sep 17 00:00:00 2001 From: Mike Bayer Date: Sun, 2 Jan 2011 14:23:42 -0500 Subject: - whitespace removal bonanza --- examples/elementtree/__init__.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'examples/elementtree/__init__.py') diff --git a/examples/elementtree/__init__.py b/examples/elementtree/__init__.py index 33805c0cb..8d47f4ace 100644 --- a/examples/elementtree/__init__.py +++ b/examples/elementtree/__init__.py @@ -21,15 +21,15 @@ In order of complexity: the load in a non-recursive fashion and is much more efficient. E.g.:: - + # parse an XML file and persist in the database doc = ElementTree.parse("test.xml") session.add(Document(file, doc)) session.commit() - + # locate documents with a certain path/attribute structure for document in find_document('/somefile/header/field2[@attr=foo]'): # dump the XML print document - + """ \ No newline at end of file -- cgit v1.2.1