diff options
author | Florent Xicluna <florent.xicluna@gmail.com> | 2011-12-10 20:14:53 (GMT) |
---|---|---|
committer | Florent Xicluna <florent.xicluna@gmail.com> | 2011-12-10 20:14:53 (GMT) |
commit | 313b2ad1a8fa518467a2ea9b0ac4cc6d483a191a (patch) | |
tree | 3da24bcb630c2c07d1977da000f64529c3d9603d /Lib/xml/dom/pulldom.py | |
parent | 0a9dd2f11db2a52fbc2cabaf0755aa33ad9372e5 (diff) | |
download | cpython-313b2ad1a8fa518467a2ea9b0ac4cc6d483a191a.zip cpython-313b2ad1a8fa518467a2ea9b0ac4cc6d483a191a.tar.gz cpython-313b2ad1a8fa518467a2ea9b0ac4cc6d483a191a.tar.bz2 |
Fix imports in xml.dom.
Diffstat (limited to 'Lib/xml/dom/pulldom.py')
-rw-r--r-- | Lib/xml/dom/pulldom.py | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/Lib/xml/dom/pulldom.py b/Lib/xml/dom/pulldom.py index d5ac8b2..43504f7 100644 --- a/Lib/xml/dom/pulldom.py +++ b/Lib/xml/dom/pulldom.py @@ -1,6 +1,5 @@ import xml.sax import xml.sax.handler -import types START_ELEMENT = "START_ELEMENT" END_ELEMENT = "END_ELEMENT" @@ -334,10 +333,7 @@ def parse(stream_or_string, parser=None, bufsize=None): return DOMEventStream(stream, parser, bufsize) def parseString(string, parser=None): - try: - from io import StringIO - except ImportError: - from io import StringIO + from io import StringIO bufsize = len(string) buf = StringIO(string) |