(parser)
| 39 | return getattr(instance, attr) |
| 40 | |
| 41 | def get_groups(parser): |
| 42 | return getattr(parser, "option_groups", None) or getattr(parser, "_action_groups") |
| 43 | |
| 44 | def get_all_options(parser): |
| 45 | retVal = set() |
no outgoing calls
no test coverage detected
searching dependent graphs…