I want to patch some code that uses an object from an external module.
One method of this object is called all over the place, and I need to set a new default kwarg in all those calls.
Rather than add so much duplicate code, I thought it would be better to change the object method. What is the cleanest way to do this?