Print details of methods, functions, or code to *file*. If *file* is not provided, the output is printed on stdout.
(co, *, file=None)
| 276 | return "\n".join(lines) |
| 277 | |
| 278 | def show_code(co, *, file=None): |
| 279 | """Print details of methods, functions, or code to *file*. |
| 280 | |
| 281 | If *file* is not provided, the output is printed on stdout. |
| 282 | """ |
| 283 | print(code_info(co), file=file) |
| 284 | |
| 285 | Positions = collections.namedtuple( |
| 286 | 'Positions', |
nothing calls this directly
no test coverage detected
searching dependent graphs…