dag/completion: debounce GitLogCompletionModel updates
[git-cola.git] / qtpy / Qt3DCore.py
blob007ef8762309500fad2a9eb3801025d6ac934d99
1 # -----------------------------------------------------------------------------
2 # Copyright © 2009- The Spyder Development Team
4 # Licensed under the terms of the MIT License
5 # (see LICENSE.txt for details)
6 # -----------------------------------------------------------------------------
8 """Provides Qt3DCore classes and functions."""
10 from . import (
11 PYQT5,
12 PYQT6,
13 PYSIDE2,
14 PYSIDE6,
15 QtModuleNotInstalledError,
18 if PYQT5:
19 try:
20 from PyQt5.Qt3DCore import *
21 except ModuleNotFoundError as error:
22 raise QtModuleNotInstalledError(
23 name='Qt3DCore', missing_package='PyQt3D'
24 ) from error
25 elif PYQT6:
26 try:
27 from PyQt6.Qt3DCore import *
28 except ModuleNotFoundError as error:
29 raise QtModuleNotInstalledError(
30 name='Qt3DCore', missing_package='PyQt6-3D'
31 ) from error
32 elif PYSIDE2:
33 # https://bugreports.qt.io/projects/PYSIDE/issues/PYSIDE-1026
34 import PySide2.Qt3DCore as __temp
35 import inspect
37 for __name in inspect.getmembers(__temp.Qt3DCore):
38 globals()[__name[0]] = __name[1]
39 elif PYSIDE6:
40 # https://bugreports.qt.io/projects/PYSIDE/issues/PYSIDE-1026
41 import PySide6.Qt3DCore as __temp
42 import inspect
44 for __name in inspect.getmembers(__temp.Qt3DCore):
45 globals()[__name[0]] = __name[1]