コード例 #1
0
ファイル: store.py プロジェクト: h4ck3rm1k3/pythoscope
 def __init__(self, obj, generator=None, args=None, callable=None):
     Callable.__init__(self)
     SerializedObject.__init__(self, obj)
     if generator is not None and args is not None and callable is not None:
         self.activate(generator, args, callable)
     self.definition = None
     self.args = None
コード例 #2
0
ファイル: store.py プロジェクト: jmikedupont2/pythoscope
 def __init__(self, obj, klass):
     Callable.__init__(self)
     SerializedObject.__init__(self, obj)
     self.klass = klass
     self.type_name = self.klass.name
コード例 #3
0
ファイル: store.py プロジェクト: jmikedupont2/pythoscope
 def __init__(self, obj, generator=None, args=None, callable=None):
     Callable.__init__(self)
     SerializedObject.__init__(self, obj)
     if generator is not None and args is not None and callable is not None:
         self.activate(generator, args, callable)
コード例 #4
0
ファイル: store.py プロジェクト: goulu/pythoscope
 def __init__(self, obj, klass):
     Callable.__init__(self)
     SerializedObject.__init__(self, obj)
     self.klass = klass
     self.type_name = self.klass.name