Author: guido.van.rossum Date: Thu Aug 17 10:56:08 2006 New Revision: 51337
Modified: python/branches/p3yk/Lib/wsgiref/handlers.py Log: Use explicit relative import, to make things work again. Modified: python/branches/p3yk/Lib/wsgiref/handlers.py ============================================================================== --- python/branches/p3yk/Lib/wsgiref/handlers.py (original) +++ python/branches/p3yk/Lib/wsgiref/handlers.py Thu Aug 17 10:56:08 2006 @@ -1,8 +1,8 @@ """Base classes for server/gateway implementations""" from types import StringType -from util import FileWrapper, guess_scheme, is_hop_by_hop -from headers import Headers +from .util import FileWrapper, guess_scheme, is_hop_by_hop +from .headers import Headers import sys, os, time _______________________________________________ Python-3000-checkins mailing list [email protected] http://mail.python.org/mailman/listinfo/python-3000-checkins
