You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

24 lines
456 B

4 years ago
  1. # -*- coding: utf-8 -*-
  2. #
  3. # Copyright © 2009- The Spyder Development Team
  4. #
  5. # Licensed under the terms of the MIT License
  6. # (see LICENSE.txt for details)
  7. """QtHelp Wrapper."""
  8. import warnings
  9. from . import PYQT5
  10. from . import PYQT4
  11. from . import PYSIDE
  12. from . import PYSIDE2
  13. if PYQT5:
  14. from PyQt5.QtHelp import *
  15. elif PYSIDE2:
  16. from PySide2.QtHelp import *
  17. elif PYQT4:
  18. from PyQt4.QtHelp import *
  19. elif PYSIDE:
  20. from PySide.QtHelp import *