Changeset 1366
- Timestamp:
- 09/15/06 15:07:17
- Files:
-
- trunk/cherrypy/_cpengine.py (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/cherrypy/_cpengine.py
r1358 r1366 212 212 213 213 def monitor(self): 214 """Check timeout on all responses (starts a recurring Timer )."""214 """Check timeout on all responses (starts a recurring Timer thread).""" 215 215 if self.state == STARTED: 216 216 for req, resp in self.servings: … … 221 221 222 222 def start_with_callback(self, func, args=None, kwargs=None): 223 """Start , then callback the given func in a new thread."""223 """Start the given func in a new thread, then start self and block.""" 224 224 225 225 if args is None: … … 246 246 except AttributeError: 247 247 def drop_privileges(self): 248 """Drop privileges. Not available."""248 """Drop privileges. Not implemented on this platform.""" 249 249 raise NotImplementedError 250 250 else:

