summaryrefslogtreecommitdiff
path: root/Lib/xml/sax/saxutils.py
diff options
context:
space:
mode:
Diffstat (limited to 'Lib/xml/sax/saxutils.py')
-rw-r--r--Lib/xml/sax/saxutils.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/Lib/xml/sax/saxutils.py b/Lib/xml/sax/saxutils.py
index 0798ecd70d..74de9b07fc 100644
--- a/Lib/xml/sax/saxutils.py
+++ b/Lib/xml/sax/saxutils.py
@@ -209,11 +209,15 @@ class XMLGenerator(handler.ContentHandler):
def characters(self, content):
if content:
self._finish_pending_start_element()
+ if not isinstance(content, str):
+ content = str(content, self._encoding)
self._write(escape(content))
def ignorableWhitespace(self, content):
if content:
self._finish_pending_start_element()
+ if not isinstance(content, str):
+ content = str(content, self._encoding)
self._write(content)
def processingInstruction(self, target, data):