diff options
| author | Marius Gedminas <marius@gedmin.as> | 2010-11-07 18:41:51 +0200 |
|---|---|---|
| committer | Marius Gedminas <marius@gedmin.as> | 2010-11-07 18:41:51 +0200 |
| commit | 820bd95aa720a5769f3a86a755a0eb22d8725489 (patch) | |
| tree | 52de28519d8b97135bd323f58b20900d4b536483 | |
| parent | 9d33a1f071df207878b45df2cd5512dae1087bb3 (diff) | |
| download | pyramid-820bd95aa720a5769f3a86a755a0eb22d8725489.tar.gz pyramid-820bd95aa720a5769f3a86a755a0eb22d8725489.tar.bz2 pyramid-820bd95aa720a5769f3a86a755a0eb22d8725489.zip | |
Fix syntax error in route_url docstring example.
Remove obfuscating parentheses around a string value.
| -rw-r--r-- | pyramid/url.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/pyramid/url.py b/pyramid/url.py index 9d94a44f5..ce7eee8d5 100644 --- a/pyramid/url.py +++ b/pyramid/url.py @@ -17,12 +17,12 @@ from pyramid.traversal import quote_path_segment def route_url(route_name, request, *elements, **kw): """Generates a fully qualified URL for a named :mod:`pyramid` :term:`route configuration`. - + Use the route's ``name`` as the first positional argument. Use a request object as the second positional argument. Additional positional arguments are appended to the URL as path segments after it is generated. - + Use keyword arguments to supply values which match any dynamic path elements in the route definition. Raises a :exc:`KeyError` exception if the URL cannot be generated for any reason (not @@ -34,9 +34,9 @@ def route_url(route_name, request, *elements, **kw): route_url('foobar', request, foo='1') => <KeyError exception> route_url('foobar', request, foo='1', bar='2') => <KeyError exception> route_url('foobar', request, foo='1', bar='2', - 'traverse=('a','b')) => http://e.com/1/2/a/b + traverse=('a','b')) => http://e.com/1/2/a/b route_url('foobar', request, foo='1', bar='2', - 'traverse=('/a/b')) => http://e.com/1/2/a/b + traverse='/a/b') => http://e.com/1/2/a/b Values replacing ``:segment`` arguments can be passed as strings or Unicode objects. They will be encoded to UTF-8 and URL-quoted |
