Tests: added Python tests with encoding.
This commit is contained in:
12
test/python/encoding/wsgi.py
Normal file
12
test/python/encoding/wsgi.py
Normal file
@@ -0,0 +1,12 @@
|
||||
import sys
|
||||
|
||||
|
||||
def application(environ, start_response):
|
||||
start_response(
|
||||
'200',
|
||||
[
|
||||
('Content-Length', '0'),
|
||||
('X-Encoding', sys.getfilesystemencoding()),
|
||||
],
|
||||
)
|
||||
return []
|
||||
Reference in New Issue
Block a user