Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
0619a329
Commit
0619a329
authored
Jul 26, 2006
by
Georg Brandl
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Bug #1459963: properly capitalize HTTP header names.
parent
cf0c1729
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
29 additions
and
26 deletions
+29
-26
Lib/test/test_urllib2.py
Lib/test/test_urllib2.py
+7
-7
Lib/urllib.py
Lib/urllib.py
+6
-6
Lib/urllib2.py
Lib/urllib2.py
+13
-13
Misc/NEWS
Misc/NEWS
+3
-0
No files found.
Lib/test/test_urllib2.py
View file @
0619a329
...
...
@@ -676,11 +676,11 @@ class HandlerTests(unittest.TestCase):
r
=
MockResponse
(
200
,
"OK"
,
{},
""
)
newreq
=
h
.
do_request_
(
req
)
if
data
is
None
:
# GET
self
.
assert_
(
"Content-
l
ength"
not
in
req
.
unredirected_hdrs
)
self
.
assert_
(
"Content-
t
ype"
not
in
req
.
unredirected_hdrs
)
self
.
assert_
(
"Content-
L
ength"
not
in
req
.
unredirected_hdrs
)
self
.
assert_
(
"Content-
T
ype"
not
in
req
.
unredirected_hdrs
)
else
:
# POST
self
.
assertEqual
(
req
.
unredirected_hdrs
[
"Content-
l
ength"
],
"0"
)
self
.
assertEqual
(
req
.
unredirected_hdrs
[
"Content-
t
ype"
],
self
.
assertEqual
(
req
.
unredirected_hdrs
[
"Content-
L
ength"
],
"0"
)
self
.
assertEqual
(
req
.
unredirected_hdrs
[
"Content-
T
ype"
],
"application/x-www-form-urlencoded"
)
# XXX the details of Host could be better tested
self
.
assertEqual
(
req
.
unredirected_hdrs
[
"Host"
],
"example.com"
)
...
...
@@ -692,8 +692,8 @@ class HandlerTests(unittest.TestCase):
req
.
add_unredirected_header
(
"Host"
,
"baz"
)
req
.
add_unredirected_header
(
"Spam"
,
"foo"
)
newreq
=
h
.
do_request_
(
req
)
self
.
assertEqual
(
req
.
unredirected_hdrs
[
"Content-
l
ength"
],
"foo"
)
self
.
assertEqual
(
req
.
unredirected_hdrs
[
"Content-
t
ype"
],
"bar"
)
self
.
assertEqual
(
req
.
unredirected_hdrs
[
"Content-
L
ength"
],
"foo"
)
self
.
assertEqual
(
req
.
unredirected_hdrs
[
"Content-
T
ype"
],
"bar"
)
self
.
assertEqual
(
req
.
unredirected_hdrs
[
"Host"
],
"baz"
)
self
.
assertEqual
(
req
.
unredirected_hdrs
[
"Spam"
],
"foo"
)
...
...
@@ -847,7 +847,7 @@ class HandlerTests(unittest.TestCase):
407
,
'Proxy-Authenticate: Basic realm="%s"
\
r
\
n
\
r
\
n
'
%
realm
)
opener
.
add_handler
(
auth_handler
)
opener
.
add_handler
(
http_handler
)
self
.
_test_basic_auth
(
opener
,
auth_handler
,
"Proxy-
a
uthorization"
,
self
.
_test_basic_auth
(
opener
,
auth_handler
,
"Proxy-
A
uthorization"
,
realm
,
http_handler
,
password_manager
,
"http://acme.example.com:3128/protected"
,
"proxy.example.com:3128"
,
...
...
Lib/urllib.py
View file @
0619a329
...
...
@@ -118,7 +118,7 @@ class URLopener:
self
.
proxies
=
proxies
self
.
key_file
=
x509
.
get
(
'key_file'
)
self
.
cert_file
=
x509
.
get
(
'cert_file'
)
self
.
addheaders
=
[(
'User-
a
gent'
,
self
.
version
)]
self
.
addheaders
=
[(
'User-
A
gent'
,
self
.
version
)]
self
.
__tempfiles
=
[]
self
.
__unlink
=
os
.
unlink
# See cleanup()
self
.
tempcache
=
None
...
...
@@ -314,8 +314,8 @@ class URLopener:
h
=
httplib
.
HTTP
(
host
)
if
data
is
not
None
:
h
.
putrequest
(
'POST'
,
selector
)
h
.
putheader
(
'Content-
t
ype'
,
'application/x-www-form-urlencoded'
)
h
.
putheader
(
'Content-
l
ength'
,
'%d'
%
len
(
data
))
h
.
putheader
(
'Content-
T
ype'
,
'application/x-www-form-urlencoded'
)
h
.
putheader
(
'Content-
L
ength'
,
'%d'
%
len
(
data
))
else
:
h
.
putrequest
(
'GET'
,
selector
)
if
proxy_auth
:
h
.
putheader
(
'Proxy-Authorization'
,
'Basic %s'
%
proxy_auth
)
...
...
@@ -400,9 +400,9 @@ class URLopener:
cert_file
=
self
.
cert_file
)
if
data
is
not
None
:
h
.
putrequest
(
'POST'
,
selector
)
h
.
putheader
(
'Content-
t
ype'
,
h
.
putheader
(
'Content-
T
ype'
,
'application/x-www-form-urlencoded'
)
h
.
putheader
(
'Content-
l
ength'
,
'%d'
%
len
(
data
))
h
.
putheader
(
'Content-
L
ength'
,
'%d'
%
len
(
data
))
else
:
h
.
putrequest
(
'GET'
,
selector
)
if
proxy_auth
:
h
.
putheader
(
'Proxy-Authorization: Basic %s'
%
proxy_auth
)
...
...
@@ -584,7 +584,7 @@ class URLopener:
data
=
base64
.
decodestring
(
data
)
else
:
data
=
unquote
(
data
)
msg
.
append
(
'Content-
l
ength: %d'
%
len
(
data
))
msg
.
append
(
'Content-
L
ength: %d'
%
len
(
data
))
msg
.
append
(
''
)
msg
.
append
(
data
)
msg
=
'
\
n
'
.
join
(
msg
)
...
...
Lib/urllib2.py
View file @
0619a329
...
...
@@ -263,11 +263,11 @@ class Request:
def add_header(self, key, val):
# useful for something like authentication
self.headers[key.
capitaliz
e()] = val
self.headers[key.
titl
e()] = val
def add_unredirected_header(self, key, val):
# will not be added to a redirected request
self.unredirected_hdrs[key.
capitaliz
e()] = val
self.unredirected_hdrs[key.
titl
e()] = val
def has_header(self, header_name):
return (header_name in self.headers or
...
...
@@ -286,7 +286,7 @@ class Request:
class OpenerDirector:
def __init__(self):
client_version = "
Python
-
urllib
/%
s
" % __version__
self.addheaders = [('User-
a
gent', client_version)]
self.addheaders = [('User-
A
gent', client_version)]
# manage the individual handlers
self.handlers = []
self.handle_open = {}
...
...
@@ -675,7 +675,7 @@ class ProxyHandler(BaseHandler):
if user and password:
user_pass = '%s:%s' % (unquote(user), unquote(password))
creds = base64.encodestring(user_pass).strip()
req.add_header('Proxy-
a
uthorization', 'Basic ' + creds)
req.add_header('Proxy-
A
uthorization', 'Basic ' + creds)
hostport = unquote(hostport)
req.set_proxy(hostport, proxy_type)
if orig_type == proxy_type:
...
...
@@ -819,7 +819,7 @@ class HTTPBasicAuthHandler(AbstractBasicAuthHandler, BaseHandler):
class ProxyBasicAuthHandler(AbstractBasicAuthHandler, BaseHandler):
auth_header = '
Proxy
-
a
uthorization
'
auth_header = '
Proxy
-
A
uthorization
'
def http_error_407(self, req, fp, code, msg, headers):
# http_error_auth_reqed requires that there is no userinfo component in
...
...
@@ -1022,20 +1022,20 @@ class AbstractHTTPHandler(BaseHandler):
if
request
.
has_data
():
# POST
data
=
request
.
get_data
()
if
not
request
.
has_header
(
'Content-
t
ype'
):
if
not
request
.
has_header
(
'Content-
T
ype'
):
request
.
add_unredirected_header
(
'Content-
t
ype'
,
'Content-
T
ype'
,
'application/x-www-form-urlencoded'
)
if
not
request
.
has_header
(
'Content-
l
ength'
):
if
not
request
.
has_header
(
'Content-
L
ength'
):
request
.
add_unredirected_header
(
'Content-
l
ength'
,
'%d'
%
len
(
data
))
'Content-
L
ength'
,
'%d'
%
len
(
data
))
scheme
,
sel
=
splittype
(
request
.
get_selector
())
sel_host
,
sel_path
=
splithost
(
sel
)
if
not
request
.
has_header
(
'Host'
):
request
.
add_unredirected_header
(
'Host'
,
sel_host
or
host
)
for
name
,
value
in
self
.
parent
.
addheaders
:
name
=
name
.
capitaliz
e
()
name
=
name
.
titl
e
()
if
not
request
.
has_header
(
name
):
request
.
add_unredirected_header
(
name
,
value
)
...
...
@@ -1217,7 +1217,7 @@ class FileHandler(BaseHandler):
modified
=
email
.
Utils
.
formatdate
(
stats
.
st_mtime
,
usegmt
=
True
)
mtype
=
mimetypes
.
guess_type
(
file
)[
0
]
headers
=
mimetools
.
Message
(
StringIO
(
'Content-
type: %s
\
n
Content-length: %d
\
n
Last-m
odified: %s
\
n
'
%
'Content-
Type: %s
\
n
Content-Length: %d
\
n
Last-M
odified: %s
\
n
'
%
(
mtype
or
'text/plain'
,
size
,
modified
)))
if
host
:
host
,
port
=
splitport
(
host
)
...
...
@@ -1272,9 +1272,9 @@ class FTPHandler(BaseHandler):
headers
=
""
mtype
=
mimetypes
.
guess_type
(
req
.
get_full_url
())[
0
]
if
mtype
:
headers
+=
"Content-
t
ype: %s
\
n
"
%
mtype
headers
+=
"Content-
T
ype: %s
\
n
"
%
mtype
if
retrlen
is
not
None
and
retrlen
>=
0
:
headers
+=
"Content-
l
ength: %d
\
n
"
%
retrlen
headers
+=
"Content-
L
ength: %d
\
n
"
%
retrlen
sf
=
StringIO
(
headers
)
headers
=
mimetools
.
Message
(
sf
)
return
addinfourl
(
fp
,
headers
,
req
.
get_full_url
())
...
...
Misc/NEWS
View file @
0619a329
...
...
@@ -42,6 +42,9 @@ Core and builtins
Library
-------
- Bug #1459963: urllib and urllib2 now normalize HTTP header names correctly
with title().
- Patch #1525766: In pkgutil.walk_packages, correctly pass the onerror callback
to recursive calls and call it with the failing package name.
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment