Python subclass dircmp (stackoverflow.com)stack
18 points by Damien in stackoverflow.com · 3h ago · stack
I'm having trouble subclassing the dircmp class from the filecmp module of Python. Here is my code: import filecmp class dircmp(filecmp.dircmp): def __init__(self, a, b, ignore = None, hide = None): super().__init__(a, b, ignore, hide) print("subclass init method") def phase3(se…