Files
rpi-buildroot/support/testing/tests/package/sample_python_pybind.py
Peter Korsgaard ed9288505c support/testing: sample_python_pybind.py: use python3 shebang
No functional change as we install a python symlink, but use python3 for
consistency with the other scripts.

Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Signed-off-by: Arnout Vandecappelle <arnout@mind.be>
2024-06-05 22:34:41 +02:00

5 lines
83 B
Python

#!/usr/bin/env python3
import example
print(example.add(1, 2))
print(example.says)