В прошлом посте говоря "Все вызовы теперь одинаковы" я несколько слукавил. Всё-таки есть в этом зоопарке версий некоторая несовместимость вызов которой просто так не унифицировать. Эти моменты вынесены в отдельный модуль QtCompat (compatibility). Там не так много функций но они довольно полезны.
Этот модуль содержит унификаци модуля shiboken2, функций loadUi, translate и несколько переименованных функций классов или изменённую сигнатуру аргументов и возвращаемых значений. Это единственное исключение из правила когда вам потребуется где-то изменить свой код кроме импортов и этот код не похож на обычный код PySide2.
Например, в PyQt4 и PySide есть метод
QHeaderView.setResizeMode
Для PyQt5 и PySide2 они были благополучно переименованы в
QHeaderView.setSectionResizeMode
Чтобы применить этот метод следует использовать такой код
from Qt import QtCompath
header = self.horizontalHeader()
QtCompat.QHeaderView.setSectionResizeMode(header, QtWidgets.QHeaderView.Fixed)
Унификация загрузки UI файлов:
# PySide2
from PySide2.QtUiTools import QUiLoader
loader = QUiLoader()
widget = loader.load(ui_file)
# PyQt5
from PyQt5 import uic
widget = uic.loadUi(ui_file)
# Qt.py
from Qt import QtCompat
widget = QtCompat.loadUi(ui_file)
Хорошо что таких моментов не много и их легко запомнить.
Полный список можно посмотреть в таблице.
#qt#tricks
#Burhan: Military operations will continue until rebellion’s defeat
The Chairman of the Transitional Sovereign Council and Commander-in-Chief of the #Sudanese Armed Forces (#SAF), Lieutenant General Abdel Fattah al-Burhan, met on Sunday with Musa Hilal, head of the Revolutionary Awakening Council, in the presence of the Governor of Darfur, Minni Arko Minawi.
During the meeting, the Chairman of the Sovereign Council offered his condolences for the martyrs of Mustariha region who confronted the militia’s aggression and sacrificed their souls for the nation’s honor and dignity.
The meeting also addressed the situation in North Darfur State and the violations committed by the #RSF against civilians in the Mustariha region.
Burhan affirmed that SAF Forces are continuing their operations until the rebellion is eradicated and security and stability are restored all over the country......
https://sudanhorizon.com/burhan-military-operations-will-continue-until-rebellions-defeat/