Changeset 1100
- Timestamp:
- 05/07/06 17:46:56
- Files:
-
- trunk/cherrypy/_cprequest.py (modified) (2 diffs)
- trunk/cherrypy/_cpwsgi.py (modified) (1 diff)
- trunk/cherrypy/config.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/cherrypy/_cprequest.py
r1098 r1100 60 60 61 61 """ 62 self.log_access = _cputil.log_access63 62 self.error_response = cherrypy.HTTPError(500).set_response 64 63 … … 84 83 cherrypy.response.body = [] 85 84 86 self.log_access() 85 log_access = cherrypy.config.get("log_access", _cputil.log_access) 86 if log_access: 87 log_access() 87 88 88 89 return cherrypy.response trunk/cherrypy/_cpwsgi.py
r1096 r1100 3 3 import sys 4 4 import cherrypy 5 from cherrypy import _cp util, _cpwsgiserver5 from cherrypy import _cpwsgiserver 6 6 from cherrypy._cperror import format_exc, bare_error 7 7 from cherrypy.lib import httptools trunk/cherrypy/config.py
r1096 r1100 4 4 5 5 import cherrypy 6 from cherrypy import _cputil 7 from cherrypy.lib import autoreload, cptools, httptools 6 from cherrypy.lib import autoreload, cptools 8 7 9 8 environments = {

