diff options
author | Neil <nyamatongwe@gmail.com> | 2014-01-01 13:17:09 +1100 |
---|---|---|
committer | Neil <nyamatongwe@gmail.com> | 2014-01-01 13:17:09 +1100 |
commit | 78079424209ff1d997e72b6b788dadb9e619ac30 (patch) | |
tree | b2b3f50eac9c8117d715406fcb8101fe0b67c801 | |
parent | 49722448248ef8bbed062b3799ba3aca2c7a62db (diff) | |
download | scintilla-mirror-78079424209ff1d997e72b6b788dadb9e619ac30.tar.gz |
Specify minimum Python version for scripts.
-rw-r--r-- | test/XiteQt.py | 1 | ||||
-rw-r--r-- | test/XiteWin.py | 1 | ||||
-rw-r--r-- | test/simpleTests.py | 1 |
3 files changed, 3 insertions, 0 deletions
diff --git a/test/XiteQt.py b/test/XiteQt.py index 65daf94e6..48c39e402 100644 --- a/test/XiteQt.py +++ b/test/XiteQt.py @@ -1,4 +1,5 @@ # -*- coding: utf-8 -*- +# Requires Python 2.7 or later import ctypes, os, sys, unittest diff --git a/test/XiteWin.py b/test/XiteWin.py index 78b023dbf..0dd9e4309 100644 --- a/test/XiteWin.py +++ b/test/XiteWin.py @@ -1,4 +1,5 @@ # -*- coding: utf-8 -*- +# Requires Python 2.7 or later from __future__ import with_statement from __future__ import unicode_literals diff --git a/test/simpleTests.py b/test/simpleTests.py index fead48b51..151ee33e8 100644 --- a/test/simpleTests.py +++ b/test/simpleTests.py @@ -1,4 +1,5 @@ # -*- coding: utf-8 -*- +# Requires Python 2.7 or later from __future__ import with_statement from __future__ import unicode_literals |