jump to:allmastodonblueskylemmylobstersdevstackwikirsshn
wwebbit
view: | | |

Front page / everything · hot matching “subclass”

1 shown · updated 9s ago · read only
  1. 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…
    filed under pythonsubclass