/usr/share/games/xpilot-ng/xpngcc/xpilot.py is in xpilot-ng-common 1:4.7.3-2.2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 | # setup.py
from distutils.core import setup
import py2exe
setup(console=["xpngcc.py"],
options = {"py2exe": {"packages": ["encodings"]}},
)
|