diff options
author | Neal Norwitz <nnorwitz@gmail.com> | 2006-04-03 04:45:34 (GMT) |
---|---|---|
committer | Neal Norwitz <nnorwitz@gmail.com> | 2006-04-03 04:45:34 (GMT) |
commit | b902f4e401bbf5ada3494c4fb7eeab605a370e10 (patch) | |
tree | 5fe70c6b50f12d41bce604fd031d432b84d8e76b /Lib/test/test_urllib2.py | |
parent | 480725d4c5bd3738c1f1fc7af74fa8825705c428 (diff) | |
download | cpython-b902f4e401bbf5ada3494c4fb7eeab605a370e10.zip cpython-b902f4e401bbf5ada3494c4fb7eeab605a370e10.tar.gz cpython-b902f4e401bbf5ada3494c4fb7eeab605a370e10.tar.bz2 |
Use absolute imports
Diffstat (limited to 'Lib/test/test_urllib2.py')
-rw-r--r-- | Lib/test/test_urllib2.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_urllib2.py b/Lib/test/test_urllib2.py index 58b54c1..64a2ee9 100644 --- a/Lib/test/test_urllib2.py +++ b/Lib/test/test_urllib2.py @@ -632,7 +632,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") |