Package: python3-minimal Version: 3.9.8-1The py3compile code that extracts timestamps from pyc files no longer works correctly with Python >= 3.7, because of changes in the pyc header:
https://github.com/python/cpython/commit/42aa93b8ff2f7879 (Grep for '<4sl' both in py3compile source and in the above patch.)
When you're fixing this, please also make the code Y2038-compliant, as it was done here:
https://github.com/python/cpython/commit/bb21e28fd08f894c -- Jakub Wilk