summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNeal Norwitz <nnorwitz@gmail.com>2006-03-24 07:10:31 (GMT)
committerNeal Norwitz <nnorwitz@gmail.com>2006-03-24 07:10:31 (GMT)
commit2a0c7801a51932c172a83ad889157da50e7e892c (patch)
tree5ea4e2ff73e99e8c15f59e377b8a1d0b28c2f60e
parent2b499436b54cbd7c2f9ba71d1303f401bd929127 (diff)
downloadcpython-2a0c7801a51932c172a83ad889157da50e7e892c.zip
cpython-2a0c7801a51932c172a83ad889157da50e7e892c.tar.gz
cpython-2a0c7801a51932c172a83ad889157da50e7e892c.tar.bz2
Use relative import now that it is required. (Should this go into 2.5?)
-rw-r--r--Lib/test/test_urllib2.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_urllib2.py b/Lib/test/test_urllib2.py
index 5710444..2843138 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")