(self, opt_str)
| 1023 | self._long_opt.get(opt_str)) |
| 1024 | |
| 1025 | def has_option(self, opt_str): |
| 1026 | return (opt_str in self._short_opt or |
| 1027 | opt_str in self._long_opt) |
| 1028 | |
| 1029 | def remove_option(self, opt_str): |
| 1030 | option = self._short_opt.get(opt_str) |
no outgoing calls