(code)
| 137 | # ____________________________________________________________ |
| 138 | |
| 139 | def label(code): |
| 140 | if isinstance(code, str): |
| 141 | return ('~', 0, code) # built-in functions ('~' sorts at the end) |
| 142 | else: |
| 143 | return (code.co_filename, code.co_firstlineno, code.co_name) |
| 144 | |
| 145 | # ____________________________________________________________ |
| 146 |
no outgoing calls
no test coverage detected
searching dependent graphs…