-
Notifications
You must be signed in to change notification settings - Fork 78
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
MNT: Deal with pyside6 throwing an error about __init__ functions in classes with multiple inheritence not getting called, when we actually are calling them. #1177
Conversation
37c0361
to
daad7a9
Compare
bd76a47
to
8bf6d16
Compare
…classes with multiple inheritence not getting called, when we actually are calling them. There is no issue running on pyqt5, but on pyside6 throws a runtime error when initializing classes that use multiple inheritance of a qt base class and a pydm class. example class: class PyDMDrawing(QWidget, PyDMWidget, new_properties=_penRuleProperties)) ... def __init__(self, parent=None, init_channel=None): ... # explicitly calling base class __init__ functions QWidget.__init__(self, parent) PyDMWidget.__init__(self, init_channel=init_channel) ... The runtime error happens when a call is made in the base class that relies on the qt base class's __init__ call to have completed setting things up (such as 'installEventFilter()). example error: -> self.installEventFilter(self) RuntimeError: '__init__' method of object's base class (PyDMDrawingImage) not called. This error is thrown despite that we explicitly call each of it's base class __init__ functions. It seems like pyside6 is just being extra cautious here. To avoid a larger rework of the widget class structures just to appease this pyside6 error, I propose we just catch this error where it occurs.
8bf6d16
to
f403b21
Compare
In the case of a pyside6 throwing a |
hey, the runtime error ends up killing the whole pydm application. and im not sure why we opted to not use super() originally, b/c in the case of PyDMDrawing |
looks like it was intentionally changed from super() to individual init calls here: but im not seeing the reasoning why |
Sorry, by "this" I meant more "do the changes in this PR prevent the methods from being run all". My curiosity was more about whether there was some fallback mechanism to trigger the calls that were passed over (e.g. Sorry for being imprecise! |
oh thanks, i had totally confused myself! i was convinced installEventFilter was getting set up correctly despite catching and passing on the error, and even if does install the filter before throwing the error, thats not something to rely on. instead looks like i can just pull those calls out of the base and add it to each child class. i guess the downside of this is redundancy, and also anyone making new subclasses of PyDMWidget or PyDMPrimitiveWidget has to know they need to makes these calls. (or events wont be filter, etc) |
new idea for addressing this issue is up here: #1181 |
There is no issue with this when running on pyqt5, but pyside6 throws a runtime error when initializing classes
that use multiple inheritance of a qt base class and a pydm class.
example class:
The runtime error happens when a call is made in the base class that
relies on the qt base class's __init__ call to have already completed setting
things up (such as 'installEventFilter()).
example error:
This error is thrown despite that we explicitly call each of it's base class __init__
functions. It seems like pyside6 is just being extra cautious here.
This is maybe not so great, but to avoid a larger rework of the widget class structures just to appease
this pyside6 error, I propose we just catch this error where it occurs.