ismael-elatifi

Results 2 issues of ismael-elatifi

Consider : parser.add_argument('--a', action='append') Following args in command line : --a 1 --a 2 Would correctly give after parsing : Namespace(a=['1','2']) But the same args in a config file :...

When you group elements into components (in methods `components` and `component_mapping`), the time complexity of your current way of doing it is O(N x M) (where N is `len(self._elts)` and...