Kaydet (Commit) d250c8d6 authored tarafından Brett Cannon's avatar Brett Cannon

Silence warnings under -3 triggered by wsgiref.

üst b646757e
...@@ -17,12 +17,13 @@ except NameError: ...@@ -17,12 +17,13 @@ except NameError:
d[k] = v d[k] = v
return d return d
try: # Uncomment for 2.2 compatibility.
True #try:
False # True
except NameError: # False
True = not None #except NameError:
False = not True # True = not None
# False = not True
# Weekday and month names for HTTP date/time formatting; always English! # Weekday and month names for HTTP date/time formatting; always English!
......
...@@ -63,7 +63,7 @@ class Headers: ...@@ -63,7 +63,7 @@ class Headers:
Does *not* raise an exception if the header is missing. Does *not* raise an exception if the header is missing.
""" """
name = name.lower() 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): def __getitem__(self,name):
"""Get the first header value for 'name' """Get the first header value for 'name'
...@@ -142,7 +142,7 @@ class Headers: ...@@ -142,7 +142,7 @@ class Headers:
return self._headers[:] return self._headers[:]
def __repr__(self): def __repr__(self):
return "Headers(%s)" % `self._headers` return "Headers(%r)" % self._headers
def __str__(self): def __str__(self):
"""str() returns the formatted headers, complete with end line, """str() returns the formatted headers, complete with end line,
......
...@@ -169,7 +169,7 @@ def demo_app(environ,start_response): ...@@ -169,7 +169,7 @@ def demo_app(environ,start_response):
print >>stdout print >>stdout
h = environ.items(); h.sort() h = environ.items(); h.sort()
for k,v in h: for k,v in h:
print >>stdout, k,'=',`v` print >>stdout, k,'=', repr(v)
start_response("200 OK", [('Content-Type','text/plain')]) start_response("200 OK", [('Content-Type','text/plain')])
return [stdout.getvalue()] return [stdout.getvalue()]
......
...@@ -98,7 +98,7 @@ def shift_path_info(environ): ...@@ -98,7 +98,7 @@ def shift_path_info(environ):
return None return None
path_parts = path_info.split('/') 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] name = path_parts[1]
del path_parts[1] del path_parts[1]
...@@ -166,7 +166,7 @@ _hoppish = { ...@@ -166,7 +166,7 @@ _hoppish = {
'connection':1, 'keep-alive':1, 'proxy-authenticate':1, 'connection':1, 'keep-alive':1, 'proxy-authenticate':1,
'proxy-authorization':1, 'te':1, 'trailers':1, 'transfer-encoding':1, 'proxy-authorization':1, 'te':1, 'trailers':1, 'transfer-encoding':1,
'upgrade':1 'upgrade':1
}.has_key }.__contains__
def is_hop_by_hop(header_name): def is_hop_by_hop(header_name):
"""Return true if 'header_name' is an HTTP/1.1 "Hop-by-Hop" header""" """Return true if 'header_name' is an HTTP/1.1 "Hop-by-Hop" header"""
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment