コード例 #1
0
ファイル: base.py プロジェクト: Python3pkg/DARE
 def __call__(self, environ, start_response):
     """Invoke the Controller"""
     # WSGIController.__call__ dispatches to the Controller method
     # the request is routed to. This routing information is
     # available in environ['pylons.routes_dict']
     try:
         return WSGIController.__call__(self, environ, start_response)
     finally:
         Session.remove()
コード例 #2
0
ファイル: base.py プロジェクト: icheckmate/DARE-1
 def __call__(self, environ, start_response):
     """Invoke the Controller"""
     # WSGIController.__call__ dispatches to the Controller method
     # the request is routed to. This routing information is
     # available in environ['pylons.routes_dict']
     try:
         return WSGIController.__call__(self, environ, start_response)
     finally:
         Session.remove()
コード例 #3
0
ファイル: __init__.py プロジェクト: Python3pkg/DARE
def init_model(engine):
    """Call me before using any of the tables or classes in the model"""
    Session.configure(bind=engine)