mirror of
https://github.com/python/cpython.git
synced 2026-02-13 19:04:37 +00:00
Silence warnings under -3 triggered by wsgiref.
This commit is contained in:
parent
b646757e01
commit
d250c8d666
4 changed files with 12 additions and 11 deletions
|
|
@ -17,12 +17,13 @@ def dict(items):
|
|||
d[k] = v
|
||||
return d
|
||||
|
||||
try:
|
||||
True
|
||||
False
|
||||
except NameError:
|
||||
True = not None
|
||||
False = not True
|
||||
# Uncomment for 2.2 compatibility.
|
||||
#try:
|
||||
# True
|
||||
# False
|
||||
#except NameError:
|
||||
# True = not None
|
||||
# False = not True
|
||||
|
||||
|
||||
# Weekday and month names for HTTP date/time formatting; always English!
|
||||
|
|
|
|||
|
|
@ -63,7 +63,7 @@ def __delitem__(self,name):
|
|||
Does *not* raise an exception if the header is missing.
|
||||
"""
|
||||
name = name.lower()
|
||||
self._headers[:] = [kv for kv in self._headers if kv[0].lower()<>name]
|
||||
self._headers[:] = [kv for kv in self._headers if kv[0].lower() != name]
|
||||
|
||||
def __getitem__(self,name):
|
||||
"""Get the first header value for 'name'
|
||||
|
|
@ -142,7 +142,7 @@ def items(self):
|
|||
return self._headers[:]
|
||||
|
||||
def __repr__(self):
|
||||
return "Headers(%s)" % `self._headers`
|
||||
return "Headers(%r)" % self._headers
|
||||
|
||||
def __str__(self):
|
||||
"""str() returns the formatted headers, complete with end line,
|
||||
|
|
|
|||
|
|
@ -169,7 +169,7 @@ def demo_app(environ,start_response):
|
|||
print >>stdout
|
||||
h = environ.items(); h.sort()
|
||||
for k,v in h:
|
||||
print >>stdout, k,'=',`v`
|
||||
print >>stdout, k,'=', repr(v)
|
||||
start_response("200 OK", [('Content-Type','text/plain')])
|
||||
return [stdout.getvalue()]
|
||||
|
||||
|
|
|
|||
|
|
@ -98,7 +98,7 @@ def shift_path_info(environ):
|
|||
return None
|
||||
|
||||
path_parts = path_info.split('/')
|
||||
path_parts[1:-1] = [p for p in path_parts[1:-1] if p and p<>'.']
|
||||
path_parts[1:-1] = [p for p in path_parts[1:-1] if p and p != '.']
|
||||
name = path_parts[1]
|
||||
del path_parts[1]
|
||||
|
||||
|
|
@ -166,7 +166,7 @@ def setup_testing_defaults(environ):
|
|||
'connection':1, 'keep-alive':1, 'proxy-authenticate':1,
|
||||
'proxy-authorization':1, 'te':1, 'trailers':1, 'transfer-encoding':1,
|
||||
'upgrade':1
|
||||
}.has_key
|
||||
}.__contains__
|
||||
|
||||
def is_hop_by_hop(header_name):
|
||||
"""Return true if 'header_name' is an HTTP/1.1 "Hop-by-Hop" header"""
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue