(func)
| 43 | |
| 44 | |
| 45 | def get_first_executor(func): |
| 46 | code = func.__code__ |
| 47 | co_code = code.co_code |
| 48 | for i in range(0, len(co_code), 2): |
| 49 | try: |
| 50 | return _opcode.get_executor(code, i) |
| 51 | except ValueError: |
| 52 | pass |
| 53 | return None |
| 54 | |
| 55 | def get_all_executors(func): |
| 56 | code = func.__code__ |
no outgoing calls
no test coverage detected
searching dependent graphs…