From 4a1710762b0a53d6a35e6d0cb630b9037a853c63 Mon Sep 17 00:00:00 2001 From: "Friedrich W. H. Kossebau" Date: Wed, 16 Feb 2022 17:16:37 +0100 Subject: Remove broken Python bindings generation pyqt broke sip4 compatibility in 5.15.6, and there is no more maintainer of the KF Python bindings to fix things. Future support might need different code, so no advantage in keeping the old code around. --- autotests/pythontest.py | 28 ---------------------------- 1 file changed, 28 deletions(-) delete mode 100644 autotests/pythontest.py (limited to 'autotests/pythontest.py') diff --git a/autotests/pythontest.py b/autotests/pythontest.py deleted file mode 100644 index 2a51ed44..00000000 --- a/autotests/pythontest.py +++ /dev/null @@ -1,28 +0,0 @@ -#!/usr/bin/env python -#-*- coding: utf-8 -*- - -from __future__ import print_function - -import sys - -sys.path.append(sys.argv[1]) - -from PyQt5 import QtCore -from PyQt5 import QtGui -from PyQt5 import QtWidgets - -from PyKF5 import KConfigCore -from PyKF5 import KConfigGui - -def main(): - app = QtWidgets.QApplication(sys.argv) - - kcg = KConfigCore.KConfigGroup(); - - assert(not kcg.isValid()) - - sc = KConfigGui.KStandardShortcut.open() - assert(sc == [QtGui.QKeySequence("CTRL+O")]) - -if __name__ == '__main__': - sys.exit(main()) -- cgit v1.2.1