(code)
| 121 | # ____________________________________________________________ |
| 122 | |
| 123 | def label(code): |
| 124 | if isinstance(code, str): |
| 125 | return ('~', 0, code) # built-in functions ('~' sorts at the end) |
| 126 | else: |
| 127 | return (code.co_filename, code.co_firstlineno, code.co_name) |
| 128 | |
| 129 | # ____________________________________________________________ |
| 130 |
no outgoing calls
no test coverage detected