`.pyc` file in zipapp can be marked as stale if opened in a different timezone than the one it was created in
Nadie ha tomado este issue todavía.
- Lenguaje dominante
- Python
- Estrellas
- 77.2k
- Forks
- 35.9k
- Métricas de merge de PR
- Métricas de PR pendientes
Descripción
Bug report
Bug description:
_get_mtime_and_size_of_source uses localtime rather than UTC --- in a zipapp, if the pyc was created in a timezone that is different than the timezone of the computer that it is being run on, it can be marked as 'stale', even though it shouldn't be --- for example, if the source file was last modified at 3:30 EST, that 3:30 EST will be stored in the pyc file as a Unix timestamp. However, if the zipapp is then transferred to a computer running PST, the modification time of the source file will be read from the zip file as 3:30 PST in unix time (through time.mktime), which will obviously be different than the 3:30 EST read from the pyc file directly (since it is never passed through time.mktime).
This seems to be because zip files do not store timezones with mtime, so Python is forced to interpret it as local time.
CPython versions tested on:
3.11, 3.13
Operating systems tested on:
Linux, macOS
Linked PRs
- gh-143868
- gh-143953
Guía de contribución
Primeros pasos
- Lee el issue completo y luego la guía de contribución del proyecto.
- Comenta en el issue que vas a ocuparte — evita que dos personas hagan lo mismo.
- Haz un fork del repositorio y trabaja en una rama.
- Abre un pull request que haga referencia al número del issue.
Línea de trabajo
Comienza en _get_mtime_and_size_of_source y sigue cómo se convierten los mtime del código fuente de zipapp con time.mktime frente a las marcas de tiempo de pyc. Reproduce la diferencia de zona horaria descrita para Python 3.11 o 3.13 en Linux o macOS y, a continuación, verifica que un pyc transferido entre zonas horarias ya no se marque incorrectamente como obsoleto.
Escrito por el modelo de indexación a partir del texto del issue.
Evaluación
- Stack tecnológico
- python
- Área
- backend
- Tipo de issue
- Error
- Dificultad
- 3/5
- Tiempo estimado
- 1-2 días
- Estado de actividad
- Estancado
- Claridad
- Bastante claro
- Aptitud para principiantes
- 35/100