(self, usage, actions, groups, prefix="::\n\n %")
| 100 | # Override the default prefix ('usage') to our % magic escape, |
| 101 | # in a code block. |
| 102 | def add_usage(self, usage, actions, groups, prefix="::\n\n %"): |
| 103 | super(MagicHelpFormatter, self).add_usage(usage, actions, groups, prefix) |
| 104 | |
| 105 | class MagicArgumentParser(argparse.ArgumentParser): |
| 106 | """ An ArgumentParser tweaked for use by IPython magics. |
nothing calls this directly
no outgoing calls
no test coverage detected