summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/pyramid/config/routes.py15
1 files changed, 7 insertions, 8 deletions
diff --git a/src/pyramid/config/routes.py b/src/pyramid/config/routes.py
index 4e1cb0762..f38050da3 100644
--- a/src/pyramid/config/routes.py
+++ b/src/pyramid/config/routes.py
@@ -535,19 +535,18 @@ class RoutesConfiguratorMixin(object):
Example Usage:
- >>> config = Configurator()
- >>> with config.route_prefix_context('foo'):
- ... config.add_route('bar', '/bar')
+ .. code-block:: python
- Arguments
+ config = Configurator()
+ with config.route_prefix_context('foo'):
+ config.add_route('bar', '/bar')
- route_prefix
-
- A string suitable to be used as a route prefix, or ``None``.
+ ``route_prefix`` is a string suitable to be used as a route prefix,
+ or ``None``.
.. versionadded:: 1.10
- """
+ """
original_route_prefix = self.route_prefix
if route_prefix is None: