コード例 #1
0
 def __init__(self):
     Constant.__init__(self)
     self.default_value = self
     
     self.type = PersistentRef.CREATE
     self.id = None
     self.version = None
     self.local_path = None
     self.local_read = False
     self.local_writeback = False
     self.versioned = False
     self.name = ''
     self.tags = ''
コード例 #2
0
ファイル: init.py プロジェクト: vistrails-ufrj/VisTrails
    def __init__(self):
        Constant.__init__(self)
        self.default_value = self

        self.type = PersistentRef.CREATE
        self.id = None
        self.version = None
        self.local_path = None
        self.local_read = False
        self.local_writeback = False
        self.versioned = False
        self.name = ''
        self.tags = ''
コード例 #3
0
ファイル: common.py プロジェクト: hjanime/VisTrails
 def __init__(self, h=None):
     Constant.__init__(self)
     if h is not None:
         self._set_hash(h)
     else:
         self._hash = None
コード例 #4
0
 def __init__(self):
     Constant.__init__(self)
コード例 #5
0
 def __init__(self, h=None):
     Constant.__init__(self)
     if h is not None:
         self._set_hash(h)
     else:
         self._hash = None