Changeset 1042
- Timestamp:
- 04/06/06 15:04:03
- Files:
-
- trunk/cherrypy/_cphttptools.py (modified) (1 diff)
- trunk/cherrypy/test/test_http.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/cherrypy/_cphttptools.py
r1020 r1042 40 40 applyFilters('on_end_request', failsafe=True) 41 41 cherrypy.serving.__dict__.clear() 42 cherrypy.thread_data.__dict__.clear()43 42 44 43 def run(self, requestLine, headers, rfile): trunk/cherrypy/test/test_http.py
r1019 r1042 25 25 class Root: 26 26 def index(self, *args, **kwargs): 27 cherrypy. thread_data.thing = data27 cherrypy.request.thing = data 28 28 return "Hello world!" 29 29 index.exposed = True

