summaryrefslogtreecommitdiff
path: root/paste/registry.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/registry.py
parent6899dbab4003886a5ed0eff27667ed2ffd7663e7 (diff)
downloadpaste-ad6924deae625ce803937bf8511b4985464f55ee.tar.gz
small docstring formatting fixes
Diffstat (limited to 'paste/registry.py')
-rw-r--r--paste/registry.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/paste/registry.py b/paste/registry.py
index 9100074..fba1822 100644
--- a/paste/registry.py
+++ b/paste/registry.py
@@ -23,7 +23,7 @@ WSGI application everything will work properly.
Example:
-.. code-block:: Python
+.. code-block:: python
#yourpackage/__init__.py
@@ -63,7 +63,7 @@ thousands of times per request, the performance of the proxy will start to
become more noticeable. In that circumstance, the problem can be avoided by
getting at the actual object via the proxy with the ``_current_obj`` function:
-.. code-block:: Python
+.. code-block:: python
#sessions.py
Session = StackedObjectProxy()
@@ -198,7 +198,7 @@ class StackedObjectProxy(object):
This should be used like:
- .. code-block:: Python
+ .. code-block:: python
obj = yourobject()
module.glob = StackedObjectProxy()