Source code for troy.session

__author__    = "TROY Development Team"
__copyright__ = "Copyright 2013, RADICAL"
__license__   = "MIT"


import saga
import troy


# ------------------------------------------------------------------------------
#
class Session (saga.Session) : 
[docs] def __init__ (self, default=True) : self.cfg = troy.Configuration () saga.Session.__init__ (self, default) # ------------------------------------------------------------------------------ # class Context (saga.Context) :
[docs] def __init__ (self, ctype) : saga.Context.__init__ (self, ctype) # ------------------------------------------------------------------------------