summaryrefslogtreecommitdiff
path: root/routes/__init__.py
diff options
context:
space:
mode:
authorbbangert <none@none>2005-09-30 23:53:49 -0700
committerbbangert <none@none>2005-09-30 23:53:49 -0700
commit0c51d059939fec0057e17cd7fa246dac4243e582 (patch)
tree09edd0923cda9c8e7f0fad11842ba14cdc5936e1 /routes/__init__.py
parentd0a050bf77250ad409007327a9189c2784667ec3 (diff)
downloadroutes-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__.py3
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