xref
: /
unit
/
test
/
python
/
204_no_content
/
wsgi.py
(revision 552:2e4ea9cc507e)
Home
History
Annotate
Line#
Scopes#
Navigate#
Raw
Download
current directory
1
def
application
(
environ
,
start_response
):
2
3
start_response
(
'204 No Content'
, [])
4
return
[]
5