MCPcopy Create free account
hub / github.com/ipython/ipython / _tr_paren

Function _tr_paren

IPython/core/inputtransformer.py:252–255  ·  view source on GitHub ↗

Translate lines escaped with: /

(line_info)

Source from the content-addressed store, hash-verified

250 line_info.the_rest)
251
252def _tr_paren(line_info):
253 "Translate lines escaped with: /"
254 return '%s%s(%s)' % (line_info.pre, line_info.ifun,
255 ", ".join(line_info.the_rest.split()))
256
257tr = { ESC_SHELL : _tr_system,
258 ESC_SH_CAP : _tr_system2,

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected