| 612 | |
| 613 | |
| 614 | class BuiltInFunctionProxy(object): |
| 615 | def __init__(self, ml_name): |
| 616 | self.ml_name = ml_name |
| 617 | |
| 618 | def __repr__(self): |
| 619 | return "<built-in function %s>" % self.ml_name |
| 620 | |
| 621 | class BuiltInMethodProxy(object): |
| 622 | def __init__(self, ml_name, pyop_m_self): |
no outgoing calls
no test coverage detected
searching dependent graphs…