summaryrefslogtreecommitdiff
path: root/docs/narr/urldispatch.rst
diff options
context:
space:
mode:
authorTres Seaver <tseaver@palladion.com>2013-03-05 12:55:27 -0800
committerTres Seaver <tseaver@palladion.com>2013-03-05 12:55:27 -0800
commit319a0c295f2e10cf19cc7e648cd0bd52ff603f50 (patch)
tree6d3ebbc2bd251c41bb4dff6895d0e003eaf42146 /docs/narr/urldispatch.rst
parent21264e3ed45fda41fb608ea4f69948aa9f9430c1 (diff)
parent67486e9eec17b0209aebc9b2f2220fa704f23825 (diff)
downloadpyramid-319a0c295f2e10cf19cc7e648cd0bd52ff603f50.tar.gz
pyramid-319a0c295f2e10cf19cc7e648cd0bd52ff603f50.tar.bz2
pyramid-319a0c295f2e10cf19cc7e648cd0bd52ff603f50.zip
Merge pull request #886 from tshepang/DRY
remove redundant text
Diffstat (limited to 'docs/narr/urldispatch.rst')
-rw-r--r--docs/narr/urldispatch.rst4
1 files changed, 0 insertions, 4 deletions
diff --git a/docs/narr/urldispatch.rst b/docs/narr/urldispatch.rst
index 749a2d49a..2a7adea81 100644
--- a/docs/narr/urldispatch.rst
+++ b/docs/narr/urldispatch.rst
@@ -76,8 +76,6 @@ this is a portion of your project's ``__init__.py``:
.. code-block:: python
- # in your project's __init__.py (mypackage.__init__)
-
config.add_route('myroute', '/prefix/{one}/{two}')
config.scan('mypackage')
@@ -92,8 +90,6 @@ that references ``myroute`` as a ``route_name`` parameter:
.. code-block:: python
- # in your project's views.py module (mypackage.views)
-
from pyramid.view import view_config
from pyramid.response import Response