diff options
author | Robert Brewer <fumanchu@aminus.org> | 2006-09-15 20:07:17 +0000 |
---|---|---|
committer | Robert Brewer <fumanchu@aminus.org> | 2006-09-15 20:07:17 +0000 |
commit | 7176aa363888c2b2056a545b86a2f765c65396c2 (patch) | |
tree | 0541c1e4a299c833e4d6bf6bac8053d3e44a14d9 /cherrypy/_cpengine.py | |
parent | ae05069838b0d6f356006bda3ec5d23b980a2947 (diff) | |
download | cherrypy-git-7176aa363888c2b2056a545b86a2f765c65396c2.tar.gz |
docstring updates.
Diffstat (limited to 'cherrypy/_cpengine.py')
-rw-r--r-- | cherrypy/_cpengine.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/cherrypy/_cpengine.py b/cherrypy/_cpengine.py index 1e423397..24feff9b 100644 --- a/cherrypy/_cpengine.py +++ b/cherrypy/_cpengine.py @@ -211,7 +211,7 @@ class Engine(object): return req def monitor(self): - """Check timeout on all responses (starts a recurring Timer).""" + """Check timeout on all responses (starts a recurring Timer thread).""" if self.state == STARTED: for req, resp in self.servings: resp.check_timeout() @@ -220,7 +220,7 @@ class Engine(object): self.monitor_thread.start() def start_with_callback(self, func, args=None, kwargs=None): - """Start, then callback the given func in a new thread.""" + """Start the given func in a new thread, then start self and block.""" if args is None: args = () @@ -245,7 +245,7 @@ class Engine(object): os.umask except AttributeError: def drop_privileges(self): - """Drop privileges. Not available.""" + """Drop privileges. Not implemented on this platform.""" raise NotImplementedError else: umask = None |