Fix BytesWarning with -bb in wsgiref.headers.Headers.

This commit is contained in:
Antoine Pitrou 2009-01-03 20:28:05 +00:00
parent 35b7e837ab
commit a9ecbdade7
2 changed files with 8 additions and 3 deletions

View file

@ -426,15 +426,20 @@ class HeaderTests(TestCase):
h[b"Foo"] = bytes(b"bar")
self.assertEqual("bar", h.get("Foo"))
self.assertEqual("bar", h.get(b"Foo"))
h.setdefault(b"Bar", b"foo")
self.assertEqual("foo", h.get("Bar"))
self.assertEqual("foo", h.get(b"Bar"))
h.add_header(b'content-disposition', b'attachment',
filename=b'bud.gif')
self.assertEqual('attachment; filename="bud.gif"',
h.get("content-disposition"))
del h['content-disposition']
self.assert_(b'content-disposition' not in h)
class ErrorHandler(BaseCGIHandler):
"""Simple handler subclass for testing BaseHandler"""