On 09/12/2021 11:58, Kieran Bingham wrote: >> +pycamera_args = [ '-fvisibility=hidden' ] >> +pycamera_args += [ '-Wno-shadow' ] > > Does python shadow variables explicitly? Does this lead to any potential > bugs? Yes, it has many cases of: class Foo { int bar; Foo(int bar) : bar(bar) { } } Tomi