From: Neal Norwitz Date: Fri, 24 Mar 2006 07:10:31 +0000 (+0000) Subject: Use relative import now that it is required. (Should this go into 2.5?) X-Git-Tag: v3.0a1~1467 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=2a0c7801a51932c172a83ad889157da50e7e892c;p=python Use relative import now that it is required. (Should this go into 2.5?) --- diff --git a/Lib/test/test_urllib2.py b/Lib/test/test_urllib2.py index 5710444017..284313868b 100644 --- a/Lib/test/test_urllib2.py +++ b/Lib/test/test_urllib2.py @@ -626,7 +626,7 @@ class HandlerTests(unittest.TestCase): from urllib2 import build_opener, HTTPHandler, HTTPError, \ HTTPCookieProcessor - from test_cookielib import interact_netscape + from test.test_cookielib import interact_netscape cj = CookieJar() interact_netscape(cj, "http://www.example.com/", "spam=eggs")