From bf87a07f4b3b75a1ed76eaa1019eeb2ce570f2ae Mon Sep 17 00:00:00 2001 From: pylover Date: Thu, 15 Aug 2024 00:39:20 +0330 Subject: [PATCH] Fix: Python3.10 compatibility --- tests/test_form_manipulation.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_form_manipulation.py b/tests/test_form_manipulation.py index 8157e66..fb5653f 100644 --- a/tests/test_form_manipulation.py +++ b/tests/test_form_manipulation.py @@ -11,7 +11,7 @@ def wsgi_application(environ, start_response): form = parse_qs( fp.read(int(environ.get('CONTENT_LENGTH', 0))).decode(), keep_blank_values=True, - strict_parsing=True + strict_parsing=False ) start_response('200 OK', [