コード例 #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
ファイル: _cpython_cppyy.py プロジェクト: bellenot/root
 def isfunction(object):
     if type(object) == _backend.CPPOverload and not object.im_class:
         return True
     return inspect._old_isfunction( object )
コード例 #4
0
ファイル: _cpython_cppyy.py プロジェクト: yamaguchi1024/root
 def isfunction(object):
     if type(object) == _backend.CPPOverload and not object.im_class:
         return True
     return inspect._old_isfunction(object)