module/
__init__.py
_ClassA.py
_ClassB.py
_ClassC.py
and each class would be in it's respected file and in the __init__.py file would be
class ClassA(_ClassA):
pass
class ClassB(_ClassB):
pass
And so on for each class. But my question is, is this "pythonetic?" Or is this just a messy way of making
a bigger mess less messy.
Thanks in advance.

New Topic/Question
Reply




MultiQuote




|