MCPcopy Index your code
hub / github.com/python/cpython / BuiltInMethodProxy

Class BuiltInMethodProxy

Tools/gdb/libpython.py:621–631  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

619 return "<built-in function %s>" % self.ml_name
620
621class BuiltInMethodProxy(object):
622 def __init__(self, ml_name, pyop_m_self):
623 self.ml_name = ml_name
624 self.pyop_m_self = pyop_m_self
625
626 def __repr__(self):
627 return ('<built-in method %s of %s object at remote 0x%x>'
628 % (self.ml_name,
629 self.pyop_m_self.safe_tp_name(),
630 self.pyop_m_self.as_address())
631 )
632
633class PyCFunctionObjectPtr(PyObjectPtr):
634 """

Callers 1

proxyvalMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…