diff options
author | Neil <nyamatongwe@gmail.com> | 2021-11-12 14:33:18 +1100 |
---|---|---|
committer | Neil <nyamatongwe@gmail.com> | 2021-11-12 14:33:18 +1100 |
commit | 2e30b0e2a18037ed362564ba3c150ad8d8459b2b (patch) | |
tree | 45d86a228612dc109a9fa1c132486973c13dc8ed /test/simpleTests.py | |
parent | 8c1bb32d0fc980ff296e3f604fccf43fcbb53008 (diff) | |
download | scintilla-mirror-2e30b0e2a18037ed362564ba3c150ad8d8459b2b.tar.gz |
Remove XiteQt.py as ScintillaEditPy is no longer included in Scintilla
and the required PySide library no longer supported.
Diffstat (limited to 'test/simpleTests.py')
-rw-r--r-- | test/simpleTests.py | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/test/simpleTests.py b/test/simpleTests.py index 71c35e8d0..98ae2a3af 100644 --- a/test/simpleTests.py +++ b/test/simpleTests.py @@ -7,10 +7,7 @@ from __future__ import unicode_literals import ctypes, string, sys, unittest -if sys.platform == "win32": - import XiteWin as Xite -else: - import XiteQt as Xite +import XiteWin as Xite # Unicode line ends are only available for lexers that support the feature so requires lexers lexersAvailable = Xite.lexillaAvailable or Xite.scintillaIncludesLexers |