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 Linux-specific utilities"""
17 QtModuleNotInQtVersionError
,
21 if sys
.platform
== 'linux':
23 from PyQt5
.QtX11Extras
import *
25 raise QtModuleNotInQtVersionError(name
='QtX11Extras')
27 from PySide2
.QtX11Extras
import *
29 raise QtModuleNotInQtVersionError(name
='QtX11Extras')
31 raise QtModuleNotInOSError(name
='QtX11Extras')