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

Method parse_argstring

IPython/core/magic_arguments.py:132–136  ·  view source on GitHub ↗

Split a string into an argument list and parse that argument list.

(self, argstring)

Source from the content-addressed store, hash-verified

130 raise UsageError(message)
131
132 def parse_argstring(self, argstring):
133 """ Split a string into an argument list and parse that argument list.
134 """
135 argv = arg_split(argstring)
136 return self.parse_args(argv)
137
138
139def construct_parser(magic_func):

Callers 10

kill_embeddedMethod · 0.80
parse_argstringFunction · 0.80
debugMethod · 0.80
captureMethod · 0.80
alias_magicMethod · 0.80
notebookMethod · 0.80
matplotlibMethod · 0.80
pylabMethod · 0.80
htmlMethod · 0.80
writefileMethod · 0.80

Calls 1

arg_splitFunction · 0.90

Tested by

no test coverage detected