新月の開発

2445b1c8 :Anonymous 2015-11-25 02:15
ちょ、これって朔のCGIモジュールからは200以外のHTTPステータスコードは返せないってこと?
/(^o^)\ナンテコッタイ

----LightCGIHTTPServer.py----

# import CGI module
try:
cgiclass = cgimodule[script].CGI
except KeyError:
self.send_error(404, "No such CGI script (%s)" % repr(scriptname))
return
self.send_response(200, "Script output follows")
if hasattr(self, 'flush_headers'):
self.flush_headers()
elif hasattr(self, '_headers_buffer'):
self.wfile.write(b"".join(self._headers_buffer))
self._headers_buffer = []
Powered by shinGETsu.