From 8b1f6e5ed3f9fc32b5eb03257d24eaf754a797a9 Mon Sep 17 00:00:00 2001 From: Chris McDonough Date: Wed, 9 Dec 2009 00:34:50 +0000 Subject: - General documentation freshening which takes imperative configuration into account in more places and uses glossary references more liberally. --- repoze/bfg/router.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'repoze/bfg/router.py') diff --git a/repoze/bfg/router.py b/repoze/bfg/router.py index b3f41442e..deffa4e17 100644 --- a/repoze/bfg/router.py +++ b/repoze/bfg/router.py @@ -29,7 +29,6 @@ from repoze.bfg.view import default_notfound_view make_app # prevent pyflakes from complaining class Router(object): - """ The main repoze.bfg WSGI application. """ implements(IRouter) debug_notfound = False @@ -50,10 +49,11 @@ class Router(object): def __call__(self, environ, start_response): """ - Accept ``environ`` and ``start_response``; route requests to - ``repoze.bfg`` views based on registrations within the - application registry; call ``start_response`` and return an - iterable. + Accept ``environ`` and ``start_response``; create a + :term:`request` and route the request to a :mod:`repoze.bfg` + view based on introspection of :term:`view configuration` + within the application registry; call ``start_response`` and + return an iterable. """ registry = self.registry has_listeners = registry.has_listeners -- cgit v1.2.3