Make an entry in the options_table for fn, with value optstr
(self, fn, optstr)
| 654 | return opts,args |
| 655 | |
| 656 | def default_option(self, fn, optstr): |
| 657 | """Make an entry in the options_table for fn, with value optstr""" |
| 658 | |
| 659 | if fn not in self.lsmagic(): |
| 660 | error("%s is not a magic function" % fn) |
| 661 | self.options_table[fn] = optstr |
| 662 | |
| 663 | |
| 664 | class MagicAlias(object): |