Use *absolute* imports now that they are required. (Should this go into 2.5?)

This commit is contained in:
Neal Norwitz 2006-03-24 07:47:46 +00:00
parent c3e54b8480
commit 2def11a90d
3 changed files with 9 additions and 9 deletions

View file

@ -4,8 +4,8 @@
"""
import os, urlparse, urllib, types
import handler
import xmlreader
from . import handler
from . import xmlreader
try:
_StringTypes = [types.StringType, types.UnicodeType]