diff options
Diffstat (limited to 'test/python/204_no_content')
-rw-r--r-- | test/python/204_no_content/wsgi.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/test/python/204_no_content/wsgi.py b/test/python/204_no_content/wsgi.py new file mode 100644 index 00000000..2184ffeb --- /dev/null +++ b/test/python/204_no_content/wsgi.py @@ -0,0 +1,4 @@ +def application(environ, start_response): + + start_response('204 No Content', []) + return [] |