Changeset 1385
- Timestamp:
- 09/29/06 18:31:02
- Files:
-
- trunk/cherrypy/_cprequest.py (modified) (1 diff)
- trunk/cherrypy/_cptree.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/cherrypy/_cprequest.py
r1371 r1385 425 425 self.method = method 426 426 path = path or "/" 427 self.query_string = query_string 427 self.query_string = query_string or '' 428 428 429 429 # Compare request and server HTTP protocol versions, in case our trunk/cherrypy/_cptree.py
r1365 r1385 109 109 path = env('SCRIPT_NAME', '') + env('PATH_INFO', '') 110 110 response = request.run(environ['REQUEST_METHOD'], path, 111 env('QUERY_STRING' ),111 env('QUERY_STRING', ''), 112 112 env('SERVER_PROTOCOL'), 113 113 translate_headers(environ),

