I have a Python class Shape
, which can perform matching. I called the corresponding method match
:
class Shape:
...
def match(self, image):
and it is working, as far as I can tell. Is there a reason to avoid using match
keyword as a method name and substitute it by a different word at the cost of semantic clarity, i.e. any situation where this class would not behave as expected?