I am trying to do the following in a bit of python code:
class Parent:
class Child(Parent):
pass
And it does not work. Is there any python syntax I can use to achieve the same result?
Thanks.
|
I am trying to do the following in a bit of python code:
And it does not work. Is there any python syntax I can use to achieve the same result? Thanks. |
|||
|
|
|
You can't do that because at the point where
|
|||
|
|
Inner classes have no special relationship with their outer classes in Python, so there's really no reason to use them. Also, having a class as a class attribute of another class is not usually an optimal design. By restructuring a bit, I bet you could come up with a solution that doesn't require or desire this behavior and that is better and more idiomatic. |
|||
|
|
|
I strongly recommend against doing anything like the following; there really isn't any reason I can think of to do it, and it's overly complicated. But for educational purposes... It is possible to have a metaclass (or a class decorator, I suppose) replace some object that came from a class definition with an actual subclass, after the enclosing (Parent) class has been created. For example in the following, we check for the presence of a special marker (a class called
This prints:
|
|||
|
|