[Python-3000-checkins] r51337 - python/branches/p3yk/Lib/wsgiref/handlers.py

guido.van.rossum python-3000-checkins at python.org
Thu Aug 17 10:56:09 CEST 2006


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
 


More information about the Python-3000-checkins mailing list