summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjortel <devnull@localhost>2009-12-22 14:38:26 +0000
committerjortel <devnull@localhost>2009-12-22 14:38:26 +0000
commit700329d3fddd6aab86459b4ffb93adac0dd3404f (patch)
tree72c11a8261bf809d1252e0ef87d70aefb7e00dfc
parent4a6a939af5525683617981851cb173854966b687 (diff)
downloadsuds-700329d3fddd6aab86459b4ffb93adac0dd3404f.tar.gz
In the sax parser, discontinue trim() on text nodes.
-rw-r--r--suds/__init__.py2
-rw-r--r--suds/sax/parser.py1
2 files changed, 1 insertions, 2 deletions
diff --git a/suds/__init__.py b/suds/__init__.py
index 80b477a..9fdf3a4 100644
--- a/suds/__init__.py
+++ b/suds/__init__.py
@@ -29,7 +29,7 @@ import sys
#
__version__ = '0.3.9'
-__build__="(beta) R629-20091217"
+__build__="(beta) R630-20091221"
#
# Exceptions
diff --git a/suds/sax/parser.py b/suds/sax/parser.py
index 12525ee..7c60872 100644
--- a/suds/sax/parser.py
+++ b/suds/sax/parser.py
@@ -77,7 +77,6 @@ class Handler(ContentHandler):
def endElement(self, name):
name = unicode(name)
current = self.top()
- current.trim()
currentqname = current.qname()
if name == currentqname:
self.pop()