How bad it's have two methods with the same name but differents signatures in two classes?
- by Super User
I have a design problem relationated with the public interface, the names of methods and the understanding of my API and my code.
I have two classes like this:
class A:
...
function collision(self):
....
...
class B:
....
function _collision(self, another_object, l, r, t, b):
....
The first class have one…