Mine
public text v1 · immutableImagine that you have the follow classes:
class Download():
def download(self):
print 'foo'
class Installer():
def _fetch(self):
print 'foo'
Both methods have the same implementation.
What is the better way in python to avoid code duplication in this case?
NOTE: You can not change the methods name in both classes.