Changeset 1035
- Timestamp:
- 03/30/06 10:07:21
- Files:
-
- trunk/cherrypy/test/helper.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/cherrypy/test/helper.py
r1018 r1035 125 125 conf = {} 126 126 setConfig(conf) 127 cherrypy.server.start_with_callback(_test_main_thread, *args, **kwargs) 127 try: 128 cherrypy.server.start_with_callback(_test_main_thread, *args, **kwargs) 129 except KeyboardInterrupt: 130 cherrypy.server.stop() 128 131 129 132 def _test_main_thread():

