示例#1
0
文件: eolian.py 项目: AmarokPL/efl
 def scope_get(self, ftype):
     return Eolian_Object_Scope(lib.eolian_function_scope_get(self, ftype))
示例#2
0
文件: eolian.py 项目: AmarokPL/efl
 def prop_writable(self):
     # TODO: maybe there is a better way to do this...
     ftype = Eolian_Function_Type.PROP_SET
     scope = lib.eolian_function_scope_get(self, ftype)
     return True if scope != Eolian_Object_Scope.UNKNOWN else False