Print details of methods, functions, or code to *file*. If *file* is not provided, the output is printed on stdout.
(co, *, file=None)
| 224 | return "\n".join(lines) |
| 225 | |
| 226 | def show_code(co, *, file=None): |
| 227 | """Print details of methods, functions, or code to *file*. |
| 228 | |
| 229 | If *file* is not provided, the output is printed on stdout. |
| 230 | """ |
| 231 | print(code_info(co), file=file) |
| 232 | |
| 233 | Positions = collections.namedtuple( |
| 234 | 'Positions', |