Use explicit relative import to make this work again.

This commit is contained in:
Guido van Rossum 2006-08-17 09:10:09 +00:00
parent ba205d6971
commit 3b271054d7
3 changed files with 8 additions and 8 deletions

View file

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