kwloafman
Results
2
comments of
kwloafman
It's a simple case of using a dataclass of dictionaries so that we can do: ```python for opt in sorted(all_options): var = opt2var(opt) names = [opt] + OptionAliases.__dict__.get(var, []) parser.add_argument(*names,...
When exactly does optparse get removed? It's been deprecated for years.