This commit is contained in:
Todd Willey 2010-11-15 14:43:50 -05:00
parent df185d5b49
commit f2c8480760
2 changed files with 3 additions and 1 deletions

View File

@ -19,7 +19,8 @@
"""
A service is a very thin wrapper around a Manager object. It exposes the
manager's public methods to other components of the system via rpc. It will
report state periodically to the database and is responsible for initiating any periodic tasts that need to be executed on a given host.
report state periodically to the database and is responsible for initiating
any periodic tasts that need to be executed on a given host.
This module contains Service, a generic baseclass for all workers.
"""

View File

@ -234,6 +234,7 @@ def utf8(value):
assert isinstance(value, str)
return value
def fix_wsgify_docstr(wsgified_func):
"""A decorator to re-assign docstrings that webob.dec.wsgify clobbers."""
@functools.wraps(wsgified_func.func)