We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d731520 commit c039ef2Copy full SHA for c039ef2
1 file changed
Lib/test/test_wsgiref.py
@@ -853,8 +853,8 @@ def testRaisesControlCharacters(self):
853
for c0 in control_characters_c0():
854
with self.subTest(c0):
855
base = BaseHandler()
856
- headers = Headers()
857
- headers['key'] = f"val"
+ test = [('x','y')]
+ headers = Headers(test[:])
858
headers.add_header("key", "val")
859
# HTAB (\x09) is allowed in values, but not in names.
860
if c0 == "\t":
0 commit comments