Translate lines escaped with a comma: ,
(content)
| 341 | return 'get_ipython().run_line_magic(%r, %r)' % (name, args) |
| 342 | |
| 343 | def _tr_quote(content): |
| 344 | "Translate lines escaped with a comma: ," |
| 345 | name, _, args = content.partition(' ') |
| 346 | return '%s("%s")' % (name, '", "'.join(args.split()) ) |
| 347 | |
| 348 | def _tr_quote2(content): |
| 349 | "Translate lines escaped with a semicolon: ;" |
nothing calls this directly
no outgoing calls
no test coverage detected