diff options
Diffstat (limited to 'paste/profilemiddleware.py')
-rw-r--r-- | paste/profilemiddleware.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/paste/profilemiddleware.py b/paste/profilemiddleware.py index 64fa5ea..43d8dca 100644 --- a/paste/profilemiddleware.py +++ b/paste/profilemiddleware.py @@ -16,6 +16,8 @@ __all__ = ['ProfileMiddleware', 'profile_decorator'] class ProfileMiddleware(object): """ + Middleware that profiles all requests. + You can enable this middleware by adding this to your configuration:: @@ -91,6 +93,8 @@ def capture_output(func, *args, **kw): def profile_decorator(**options): """ + Profile a single function call. + Used around a function, like:: @profile_decorator(options...) |