jump to:allmastodonblueskylemmylobstersdevstackwikirsshn
wwebbit
view: | | |

Knowledge / Stack Overflow · hot matching “subclass”

1 shown · updated 2s ago · read only
  1. Python subclass dircmp (stackoverflow.com)stack

    23 points by Damien in stackoverflow.com · 1h 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…
    filed under pythonsubclass