Translate lines escaped with a percent sign: %
(content)
| 336 | return _make_help_call(content, '??') |
| 337 | |
| 338 | def _tr_magic(content): |
| 339 | "Translate lines escaped with a percent sign: %" |
| 340 | name, _, args = content.partition(' ') |
| 341 | return 'get_ipython().run_line_magic(%r, %r)' % (name, args) |
| 342 | |
| 343 | def _tr_quote(content): |
| 344 | "Translate lines escaped with a comma: ," |
nothing calls this directly
no outgoing calls
no test coverage detected