diff options
author | Neal Norwitz <nnorwitz@gmail.com> | 2006-03-24 07:47:46 (GMT) |
---|---|---|
committer | Neal Norwitz <nnorwitz@gmail.com> | 2006-03-24 07:47:46 (GMT) |
commit | 2def11a90d1ea89af46c32ccb7e5dbe0bcaff73a (patch) | |
tree | 98d0111e74647059ba5c6326bfc28f730dd31ea3 /Lib/xmlcore/sax/saxutils.py | |
parent | c3e54b848000e8cd2fc28ea29f3f8a0163aa075f (diff) | |
download | cpython-2def11a90d1ea89af46c32ccb7e5dbe0bcaff73a.zip cpython-2def11a90d1ea89af46c32ccb7e5dbe0bcaff73a.tar.gz cpython-2def11a90d1ea89af46c32ccb7e5dbe0bcaff73a.tar.bz2 |
Use *absolute* imports now that they are required. (Should this go into 2.5?)
Diffstat (limited to 'Lib/xmlcore/sax/saxutils.py')
-rw-r--r-- | Lib/xmlcore/sax/saxutils.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/xmlcore/sax/saxutils.py b/Lib/xmlcore/sax/saxutils.py index 582b008..880de80 100644 --- a/Lib/xmlcore/sax/saxutils.py +++ b/Lib/xmlcore/sax/saxutils.py @@ -4,8 +4,8 @@ convenience of application and driver writers. """ import os, urlparse, urllib, types -import handler -import xmlreader +from . import handler +from . import xmlreader try: _StringTypes = [types.StringType, types.UnicodeType] |