Python kompiliert automatisch inkludierte Sourcefiles, Betonung liegt auf inkludierte Files. Wie also Python-Dateien kompilieren, die nicht inkludiert werden?
python -m compileall .
oder aus Python heraus:
import py_compile py_compile.compile("main.py")