diff options
author | bbangert <none@none> | 2005-09-30 23:53:49 -0700 |
---|---|---|
committer | bbangert <none@none> | 2005-09-30 23:53:49 -0700 |
commit | 0c51d059939fec0057e17cd7fa246dac4243e582 (patch) | |
tree | 09edd0923cda9c8e7f0fad11842ba14cdc5936e1 /routes/__init__.py | |
parent | d0a050bf77250ad409007327a9189c2784667ec3 (diff) | |
download | routes-0c51d059939fec0057e17cd7fa246dac4243e582.tar.gz |
[svn] __init__ now loads the Mapper, url_for, redirect_to, and request_config as per Jacob Smullyan's suggestion (which I rather liked)
--HG--
branch : trunk
Diffstat (limited to 'routes/__init__.py')
-rw-r--r-- | routes/__init__.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/routes/__init__.py b/routes/__init__.py index 60756a1..a555888 100644 --- a/routes/__init__.py +++ b/routes/__init__.py @@ -19,3 +19,6 @@ else: def request_config(): return _RequestConfig() + +from base import Mapper +from util import url_for, redirect_to |