blob: 0a916a9bea6123874951c67917c23aec54a67869 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
import sys
def application(environ, start_response):
start_response(
'200',
[
('Content-Length', '0'),
('X-Encoding', sys.getfilesystemencoding()),
],
)
return []
|