Changeset 950
- Timestamp:
- 01/30/06 22:16:41
- Files:
-
- trunk/cherrypy/_cphttpserver.py (modified) (1 diff)
- trunk/cherrypy/_cpwsgi.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/cherrypy/_cphttpserver.py
r887 r950 81 81 request.multithread = cherrypy.config.get("server.thread_pool") > 1 82 82 request.multiprocess = False 83 request.wsgi_environ = False 83 84 response = request.run(self.raw_requestline, self._headerlist(), 84 85 self.rfile) trunk/cherrypy/_cpwsgi.py
r887 r950 70 70 request.multithread = environ['wsgi.multithread'] 71 71 request.multiprocess = environ['wsgi.multiprocess'] 72 request.wsgi_environ = environ 72 73 response = request.run(requestLine(environ), 73 74 translate_headers(environ),

