Wrap the abbreviations as a tuple in the option abbreviation list
(*abrvs)
| 30 | option.names = {} |
| 31 | |
| 32 | def conflicting(*abrvs): |
| 33 | """Wrap the abbreviations as a tuple in the option abbreviation list""" |
| 34 | # Assumes last #abrvs abbreviations are conflicting options |
| 35 | option.abrvs = option.abrvs[:-len(abrvs)] + [tuple(abrvs)] |
| 36 | |
| 37 | def _expand_options(bitmap): |
| 38 | # Apply the bitmap to the options |