示例#1
0
文件: ROOT.py 项目: troiganto/root
def isfunction( object ):
   if type(object) == _root.MethodProxy and not object.im_class:
      return True
   return inspect._old_isfunction( object )
示例#2
0
def isfunction(object):
    if type(object) == _root.MethodProxy and not object.im_class:
        return True
    return inspect._old_isfunction(object)
示例#3
0
 def isfunction(object):
     if type(object) == _backend.CPPOverload and not object.im_class:
         return True
     return inspect._old_isfunction( object )
示例#4
0
 def isfunction(object):
     if type(object) == _backend.CPPOverload and not object.im_class:
         return True
     return inspect._old_isfunction(object)