aboutsummaryrefslogtreecommitdiffstats
path: root/test/matchers.py
diff options
context:
space:
mode:
authorGerald Combs <gerald@wireshark.org>2020-11-03 11:22:14 -0800
committerWireshark GitLab Utility <gerald+gitlab-utility@wireshark.org>2020-11-05 06:46:35 +0000
commit30c392f166475a251ea8c3cfde305b40971bbbef (patch)
treec2f48ab77206590f470c64797c3405c08a8914bc /test/matchers.py
parentebfa1f8a4b7165b7cee85a8f32c42b0de7d9f651 (diff)
Tools+test: Call python3 explicitly.
PEP 394[1] says, "In cases where the script is expected to be executed outside virtual environments, developers will need to be aware of the following discrepancies across platforms and installation methods: * Older Linux distributions will provide a python command that refers to Python 2, and will likely not provide a python2 command. * Some newer Linux distributions will provide a python command that refers to Python 3. * Some Linux distributions will not provide a python command at all by default, but will provide a python3 command by default." Debian has forced the issue by choosing the third option[2]: "NOTE: Debian testing (bullseye) has removed the "python" package and the '/usr/bin/python' symlink due to the deprecation of Python 2." Switch our shebang from "#!/usr/bin/env python" to "#!/usr/bin/env python3" in some places. Remove some 2/3 version checks if we know we're running under Python 3. Remove the "coding: utf-8" in a bunch of places since that's the default in Python 3. [1]https://www.python.org/dev/peps/pep-0394/#for-python-script-publishers [2]https://wiki.debian.org/Python
Diffstat (limited to 'test/matchers.py')
-rw-r--r--test/matchers.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/test/matchers.py b/test/matchers.py
index 5696d64e72..46005cac5a 100644
--- a/test/matchers.py
+++ b/test/matchers.py
@@ -1,5 +1,4 @@
#
-# -*- coding: utf-8 -*-
# Wireshark tests
#
# Copyright (c) 2018 Peter Wu <peter@lekensteyn.nl>