/usr/share/python3/runtime.d/public_modules.rtinstall is in python3 3.4.2-2.
This file is owned by root:root, with mode 0o755.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 | #! /bin/sh
set -e
VERSION=${2#python}
if which py3compile >/dev/null 2>&1; then
py3compile -V $VERSION /usr/lib/python3/dist-packages
else
echo >&2 "py3compile not found in $(basename $0) hook."
exit 1
fi
|