예제 #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
파일: ROOT.py 프로젝트: pombredanne/root-1
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)