(line, cell)
| 134 | @magic_arguments.magic_arguments() |
| 135 | @script_args |
| 136 | def named_script_magic(line, cell): |
| 137 | # if line, add it as cl-flags |
| 138 | if line: |
| 139 | line = "%s %s" % (script, line) |
| 140 | else: |
| 141 | line = script |
| 142 | return self.shebang(line, cell) |
| 143 | |
| 144 | # write a basic docstring: |
| 145 | named_script_magic.__doc__ = \ |