I don't do a lot of work in GUI's, but I've decided to move from occasionally using PyQt4 to PyQt5. My IDE is giving me warnings about some of the __init__
functions, particularly QWidget and QMainWindow.
If you look at the IntelliSense'd parameters, you'll see that the parent
parameter has a default and the flags
does not. The IDE tells me that flags
is unfilled, but when I don't provide it, nothing happens. Why is this happening?
I'm using Python 3.5.