diff options
author | ianb <devnull@localhost> | 2006-10-20 19:17:23 +0000 |
---|---|---|
committer | ianb <devnull@localhost> | 2006-10-20 19:17:23 +0000 |
commit | 96644d94fd727e919d6a3d52998f276c90cbf770 (patch) | |
tree | 2e44477c0d1af2af22b76123841814431e5c0017 /paste/debug | |
parent | e4815ce24daa232d588d588490b214b079890451 (diff) | |
download | paste-96644d94fd727e919d6a3d52998f276c90cbf770.tar.gz |
Add docstring for all the entry points
Diffstat (limited to 'paste/debug')
-rwxr-xr-x | paste/debug/debugapp.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/paste/debug/debugapp.py b/paste/debug/debugapp.py index 15584aa..0e4e82f 100755 --- a/paste/debug/debugapp.py +++ b/paste/debug/debugapp.py @@ -67,9 +67,13 @@ class SlowConsumer: def make_test_app(global_conf): return SimpleApplication() +make_test_app.__doc__ = SimpleApplication.__doc__ + def make_slow_app(global_conf, chunk_size=4096, delay=1, progress=True): from paste.deploy.converters import asbool return SlowConsumer( chunk_size=int(chunk_size), delay=int(delay), progress=asbool(progress)) + +make_slow_app.__doc__ = SlowConsumer.__doc__ |