Changeset 1140
- Timestamp:
- 06/12/06 01:14:25
- Files:
-
- trunk/cherrypy/test/test_http.py (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/cherrypy/test/test_http.py
r1094 r1140 13 13 import threading 14 14 import cherrypy 15 from cherrypy import _cp httptools15 from cherrypy import _cprequest 16 16 17 17 … … 31 31 def gc_stats(self): 32 32 return "%s %s %s %s" % (gc.collect(), 33 len(get_instances(_cp httptools.Request)),34 len(get_instances(_cp httptools.Response)),33 len(get_instances(_cprequest.Request)), 34 len(get_instances(_cprequest.Response)), 35 35 len(gc.get_referrers(data))) 36 36 gc_stats.exposed = True

