This file is indexed.

/usr/bin/pythontex3 is in texlive-extra-utils 2015.20160320-1.

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
11
#!/bin/sh

if which python3 >/dev/null 2>&1
then
  python3 /usr/share/texlive/texmf-dist/scripts/pythontex/pythontex3.py \
    --interpreter python:python3 "$@"
else
  echo "You need to have python3 installed to be able to use" >&2
  echo "the Python 3 version of pythontex!" >&2
  echo "Exiting." >&2
fi