# HG changeset patch # User Sergey Kandaurov # Date 1558623522 -10800 # Node ID d23d959713b55c26cc78cca3c3fd0f69fbbaf945 # Parent fc3722dd88629ed56850b9a2f19fff9e606a74a7 Tests: Python 3.7 (PEP 3333) compatibility in uwsgi tests. diff -r fc3722dd8862 -r d23d959713b5 uwsgi.t --- a/uwsgi.t Tue May 21 17:29:05 2019 +0300 +++ b/uwsgi.t Thu May 23 17:58:42 2019 +0300 @@ -61,7 +61,7 @@ def application(env, start_response): start_response('200 OK', [('Content-Type','text/plain')]) - return "SEE-THIS" + return b"SEE-THIS" END