Update the conditions match calls to always use keyword arguments.
Review Request #8345 — Created Aug. 25, 2016 and submitted — Latest diff uploaded
BaseConditionOperator.matches()
is now called using keyword arguments.
This makes it easier for those methods that don't want to take certain
arguments to simply hide them in their**kwargs
, simplifying some
implementations/docs and helping keep function signatures consistent.
Unit tests pass.