summaryrefslogtreecommitdiff
path: root/tests/cgiapp_data/stderr.cgi
blob: d2520b6f49d6f5e5d9d8e52758d19b6d11c02ae8 (plain)
1
2
3
4
5
6
7
8
#!/usr/bin/env python
from __future__ import print_function
import sys
print('Status: 500 Server Error')
print('Content-type: text/html')
print()
print('There was an error')
print('some data on the error', file=sys.stderr)