Now uses make_parser to create its parser (patch 101573).

This commit is contained in:
Lars Gustäbel 2000-09-21 08:38:46 +00:00
parent ae43e5205d
commit b798c0109f

View file

@ -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