We have quite a big code base containing lots of functions in python.
Due to recent changes, we need to add a kwarg to every function.
We of course can manually change all the functions' signature to have the kwarg, but is there a better way to do it?
Maybe in interpreter level? Before every function is called, add that kwarg into it?