I know why it's a bad idea, but this seems a good case for it, and I want to hear why I'm wrong, and what my alternatives are.
I have thing.py which is full of core logic.
I have appthing.py which wants to use that logic, while adding some app-specific things for the environment we use, like saving user settings regarding said logic through our app's built-in, persistent storage capabilities, which appthing.py would interact with to restore state at later times, and so on.
I can (as I see it):
- duplicate thing.py's function names in appthing.py; these call the originals
- call things where they are: appthing.func1, appthing.thing.func2, etc
- import both and use them in parallel somehow
- from thing import * and work with appthing.funcs everywhere
I don't want to do 1 - I hate duplication of code/work. 2 seems a bear to work with (appthing.settingA becomes appthing.thing.settingA). 3 seems like a bad idea in general. That leaves 4, import *, which I know is wrong, but again, in this case it seems okay.
What say you? What's my option 5? Thanks.
I should note that there aren't any classes anywhere. I'm trying to break the habit of classes everywhere. None of this needs it, so simply subclassing between modules is out.