summaryrefslogtreecommitdiffstats
path: root/Lib/xml/dom
diff options
context:
space:
mode:
authorLars Gustäbel <lars@gustaebel.de>2000-09-21 08:38:46 (GMT)
committerLars Gustäbel <lars@gustaebel.de>2000-09-21 08:38:46 (GMT)
commitb798c0109f56dc077bdd7d24fefb7b2c44afe98b (patch)
tree72d55c076185e8a816ed06a3642e5a3b1f5687a5 /Lib/xml/dom
parentae43e5205d7eec667e86c6dbf6714ec2fc12cf26 (diff)
downloadcpython-b798c0109f56dc077bdd7d24fefb7b2c44afe98b.zip
cpython-b798c0109f56dc077bdd7d24fefb7b2c44afe98b.tar.gz
cpython-b798c0109f56dc077bdd7d24fefb7b2c44afe98b.tar.bz2
Now uses make_parser to create its parser (patch 101573).
Diffstat (limited to 'Lib/xml/dom')
-rw-r--r--Lib/xml/dom/pulldom.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/xml/dom/pulldom.py b/Lib/xml/dom/pulldom.py
index 1f7c699..ae8ea1c 100644
--- a/Lib/xml/dom/pulldom.py
+++ b/Lib/xml/dom/pulldom.py
@@ -2,7 +2,7 @@ import minidom
import types
import string
import sys
-from xml.sax import ExpatParser
+import xml.sax
#todo: SAX2/namespace handling
@@ -166,7 +166,7 @@ class DOMEventStream:
def _getParser():
- return ExpatParser()
+ return xml.sax.make_parser()
default_bufsize=(2**14)-20
# FIXME: move into sax package for common usage