Re: [PATCH] patman: Fix defaults not propegating to subparsers

2022-04-28 Thread Sean Anderson
Hi Alper, On 4/27/22 4:11 PM, Alper Nebi Yasak wrote: > On 22/04/2022 19:50, Sean Anderson wrote: >> On python 3.8.10, subparsers are not updated with defaults. I suspect >> this is related to [1]. Fix this by explicitly updating subparsers with >> settings. >> >> [1] https://github.com/python/cp

Re: [PATCH] patman: Fix defaults not propegating to subparsers

2022-04-27 Thread Alper Nebi Yasak
On 22/04/2022 19:50, Sean Anderson wrote: > On python 3.8.10, subparsers are not updated with defaults. I suspect > this is related to [1]. Fix this by explicitly updating subparsers with > settings. > > [1] https://github.com/python/cpython/issues/89398 > > Fixes: 3145b63513 ("patman: Update def

[PATCH] patman: Fix defaults not propegating to subparsers

2022-04-22 Thread Sean Anderson
On python 3.8.10, subparsers are not updated with defaults. I suspect this is related to [1]. Fix this by explicitly updating subparsers with settings. [1] https://github.com/python/cpython/issues/89398 Fixes: 3145b63513 ("patman: Update defaults in subparsers") Signed-off-by: Sean Anderson ---