summaryrefslogtreecommitdiff
path: root/paste/wsgilib.py
diff options
context:
space:
mode:
authorianb <devnull@localhost>2008-04-27 06:26:53 +0000
committerianb <devnull@localhost>2008-04-27 06:26:53 +0000
commitad6924deae625ce803937bf8511b4985464f55ee (patch)
tree98e7ca0c58dc5e181d6b918a68a7d0a7d2da9b2f /paste/wsgilib.py
parent6899dbab4003886a5ed0eff27667ed2ffd7663e7 (diff)
downloadpaste-ad6924deae625ce803937bf8511b4985464f55ee.tar.gz
small docstring formatting fixes
Diffstat (limited to 'paste/wsgilib.py')
-rw-r--r--paste/wsgilib.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/paste/wsgilib.py b/paste/wsgilib.py
index d033387..67ced97 100644
--- a/paste/wsgilib.py
+++ b/paste/wsgilib.py
@@ -437,7 +437,7 @@ def capture_output(environ, start_response, application):
Sends status and header, but *not* body. Returns (status,
headers, body). Typically this is used like:
- .. code-block:: Python
+ .. code-block:: python
def dehtmlifying_middleware(application):
def replacement_app(environ, start_response):
@@ -488,7 +488,7 @@ def intercept_output(environ, application, conditional=None,
Typically this is used like:
- .. code-block:: Python
+ .. code-block:: python
def dehtmlifying_middleware(application):
def replacement_app(environ, start_response):
@@ -510,7 +510,7 @@ def intercept_output(environ, application, conditional=None,
will be returned. You must detect that in your code and return
the app_iter, like:
- .. code-block:: Python
+ .. code-block:: python
def dehtmlifying_middleware(application):
def replacement_app(environ, start_response):