There is no code here, yet. I'm trying to get a handle on the design.
I'm looking at implementing a project in Python 3 which needs an extension written in C/C++.
There is an existing python class that does most of what I want, but needs extended behavior of one method.
If this were a pure python solution, I'd just subclass the existing class, and write the new method to overload the parent class's method.
How do I do python subclassing in a C extension?
That would be much cleaner than rewriting the whole class, or worse yet, having to implement the whole project in C or C++.