Changeset 1712
- Timestamp:
- 08/27/07 18:38:39
- Files:
-
- branches/cherrypy-3.0.x/cherrypy/lib/profiler.py (modified) (1 diff)
- branches/cherrypy-3.0.x/cherrypy/test/helper.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
branches/cherrypy-3.0.x/cherrypy/lib/profiler.py
r1653 r1712 91 91 """statfiles() -> list of available profiles.""" 92 92 return [f for f in os.listdir(self.path) 93 if f. startswith("cp_") and f.endswith(".prof")]93 if f.endswith(".prof")] 94 94 95 95 def stats(self, filename, sortby='cumulative'): branches/cherrypy-3.0.x/cherrypy/test/helper.py
r1528 r1712 22 22 import sys 23 23 import thread 24 import warnings 24 25 25 26 import cherrypy

