From: =?utf-8?q?=22IOhannes_m_zm=C3=B6lnig_=28Debian/GNU=29=22?=
 <umlaeute@debian.org>
Date: Fri, 27 Mar 2020 20:57:21 +0100
Subject: use 'python3' instead of 'python' when calling scripts

Origin: Debian
Forwarded: not-needed
Last-Update: 2019-09-10

also in the documentation
Last-Update: 2019-09-10
---
 can/viewer.py        | 10 +++++-----
 doc/scripts.rst      | 12 ++++++------
 test/test_scripts.py |  8 ++++----
 3 files changed, 15 insertions(+), 15 deletions(-)

diff --git a/can/viewer.py b/can/viewer.py
index 97bda16..7971167 100644
--- a/can/viewer.py
+++ b/can/viewer.py
@@ -392,7 +392,7 @@ def _parse_viewer_args(
 ) -> tuple[argparse.Namespace, TDataStructs]:
     # Parse command line arguments
     parser = argparse.ArgumentParser(
-        "python -m can.viewer",
+        "python3 -m can.viewer",
         description="A simple CAN viewer terminal application written in Python",
         epilog="R|Shortcuts: "
         "\n        +---------+-------------------------------+"
@@ -444,7 +444,7 @@ def _parse_viewer_args(
         "\n      q = int64_t, Q = uint64_t"
         "\n      f = float (32-bits), d = double (64-bits)"
         "\nFx to convert six bytes with ID 0x100 into uint8_t, uint16 and uint32_t:"
-        '\n  $ python -m can.viewer -d "100:<BHL"'
+        '\n  $ python3 -m can.viewer -d "100:<BHL"'
         "\nNote that the IDs are always interpreted as hex values."
         "\nAn optional conversion from integers to real units can be given"
         "\nas additional arguments. In order to convert from raw integer"
@@ -453,16 +453,16 @@ def _parse_viewer_args(
         "\nto convert from real units to raw integer values."
         "\nFx lets say the uint8_t needs no conversion, but the uint16 and the uint32_t"
         "\nneeds to be divided by 10 and 100 respectively:"
-        '\n  $ python -m can.viewer -d "101:<BHL:1:10.0:100.0"'
+        '\n  $ python3 -m can.viewer -d "101:<BHL:1:10.0:100.0"'
         "\nBe aware that integer division is performed if the scaling value is an integer."
         "\nMultiple arguments are separated by spaces:"
-        '\n  $ python -m can.viewer -d "100:<BHL" "101:<BHL:1:10.0:100.0"'
+        '\n  $ python3 -m can.viewer -d "100:<BHL" "101:<BHL:1:10.0:100.0"'
         "\nAlternatively a file containing the conversion strings separated by new lines"
         "\ncan be given as input:"
         "\n  $ cat file.txt"
         "\n      100:<BHL"
         "\n      101:<BHL:1:10.0:100.0"
-        "\n  $ python -m can.viewer -d file.txt",
+        "\n  $ python3 -m can.viewer -d file.txt",
         metavar="{<id>:<format>,<id>:<format>:<scaling1>:...:<scalingN>,file.txt}",
         nargs=argparse.ONE_OR_MORE,
         default="",
diff --git a/doc/scripts.rst b/doc/scripts.rst
index 1d730a7..c8c5e99 100644
--- a/doc/scripts.rst
+++ b/doc/scripts.rst
@@ -3,7 +3,7 @@ Command Line Tools
 
 The following modules are callable from ``python-can``.
 
-They can be called for example by ``python -m can.logger`` or ``can_logger`` (if installed using pip).
+They can be called for example by ``python3 -m can.logger`` or ``can_logger`` (if installed using pip).
 
 can.logger
 ----------
@@ -11,14 +11,14 @@ can.logger
 Command line help, called with ``--help``:
 
 
-.. command-output:: python -m can.logger -h
+.. command-output:: python3 -m can.logger -h
     :shell:
 
 
 can.player
 ----------
 
-.. command-output:: python -m can.player -h
+.. command-output:: python3 -m can.player -h
     :shell:
 
 
@@ -53,7 +53,7 @@ By default the ``can.viewer`` uses the :doc:`/interfaces/socketcan` interface. A
 
 The full usage page can be seen below:
 
-.. command-output:: python -m can.viewer -h
+.. command-output:: python3 -m can.viewer -h
     :shell:
 
 
@@ -62,12 +62,12 @@ can.bridge
 
 A small application that can be used to connect two can buses:
 
-.. command-output:: python -m can.bridge -h
+.. command-output:: python3 -m can.bridge -h
     :shell:
 
 
 can.logconvert
 --------------
 
-.. command-output:: python -m can.logconvert -h
+.. command-output:: python3 -m can.logconvert -h
     :shell:
diff --git a/test/test_scripts.py b/test/test_scripts.py
index c1a6c08..a9d4269 100644
--- a/test/test_scripts.py
+++ b/test/test_scripts.py
@@ -73,7 +73,7 @@ class CanScriptTest(unittest.TestCase, metaclass=ABCMeta):
 class TestLoggerScript(CanScriptTest):
     def _commands(self):
         commands = [
-            "python -m can.logger --help",
+            "python3 -m can.logger --help",
             "can_logger --help",
         ]
         return commands
@@ -87,7 +87,7 @@ class TestLoggerScript(CanScriptTest):
 class TestPlayerScript(CanScriptTest):
     def _commands(self):
         commands = [
-            "python -m can.player --help",
+            "python3 -m can.player --help",
             "can_player --help",
         ]
         return commands
@@ -101,7 +101,7 @@ class TestPlayerScript(CanScriptTest):
 class TestBridgeScript(CanScriptTest):
     def _commands(self):
         commands = [
-            "python -m can.bridge --help",
+            "python3 -m can.bridge --help",
             "can_bridge --help",
         ]
         return commands
@@ -115,7 +115,7 @@ class TestBridgeScript(CanScriptTest):
 class TestLogconvertScript(CanScriptTest):
     def _commands(self):
         commands = [
-            "python -m can.logconvert --help",
+            "python3 -m can.logconvert --help",
             "can_logconvert --help",
         ]
         return commands
