summaryrefslogtreecommitdiffstats
path: root/Lib/http
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2008-06-23 11:44:14 (GMT)
committerGeorg Brandl <georg@python.org>2008-06-23 11:44:14 (GMT)
commit029986af249f71a5603110a0f5f0b18d0f335828 (patch)
tree90fafdd902e370d05952d900b7270043ad4c0053 /Lib/http
parent0f7ede45693be57ba51c7aa23a0d841f160de874 (diff)
downloadcpython-029986af249f71a5603110a0f5f0b18d0f335828.zip
cpython-029986af249f71a5603110a0f5f0b18d0f335828.tar.gz
cpython-029986af249f71a5603110a0f5f0b18d0f335828.tar.bz2
Fix old urllib/urllib2/urlparse usage.
Diffstat (limited to 'Lib/http')
-rw-r--r--Lib/http/cookiejar.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/http/cookiejar.py b/Lib/http/cookiejar.py
index e9b83ea..afd5f20 100644
--- a/Lib/http/cookiejar.py
+++ b/Lib/http/cookiejar.py
@@ -1305,7 +1305,7 @@ class CookieJar:
return attrs
def add_cookie_header(self, request):
- """Add correct Cookie: header to request (urllib2.Request object).
+ """Add correct Cookie: header to request (urllib.request.Request object).
The Cookie2 header is also added unless policy.hide_cookie2 is true.