Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

gh-133998: Fix gzip file creation when time is out of range#134278

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to ourterms of service andprivacy statement. We’ll occasionally send you account related emails.

Already on GitHub?Sign in to your account

Open
adang1345 wants to merge7 commits intopython:main
base:main
Choose a base branch
Loading
fromadang1345:fix-gzip-mtime

Conversation

adang1345
Copy link
Contributor

@adang1345adang1345 commentedMay 19, 2025
edited by github-actionsbot
Loading

If the system clock is set so thattime.time() falls outside of the range0 through2**32-1, then creation of a GZIP-compressed file usinggzip.GzipFile() would fail with the exceptionstruct.error: 'L' format requires 0 <= number <= 4294967295. Fix this error.

If themtime argument togzip.GzipFile() is explicitly set to an out-of-range value, then the behavior is unchanged, and we continue raising the exception.


📚 Documentation preview 📚:https://cpython-previews--134278.org.readthedocs.build/

creation time. If *mtime* is omitted or ``None``, the current time is used;
however, if the current time is outside the range 00:00:00 UTC, January 1,
1970 through 06:28:15 UTC, February 7, 2106, then the value ``0`` is used
instead.

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others.Learn more.

The docs are slightly wrong now thatGzipFile.__init__ will raise a ValueError if the specified value is out of range.
I know you've documented it in the docstring for__init__, but I think it's worth clarifying here since we're already in the area.

Comment on lines +191 to +195
Set mtime to 0 to generate a compressed stream that does not depend on
creation time. If mtime is omitted or None, the current time is used;
however, if the current time is outside the range 00:00:00 UTC, January
1, 1970 through 06:28:15 UTC, February 7, 2106, then the value 0 is used
instead.

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others.Learn more.

Ditto, see previous comment

@@ -0,0 +1 @@
Fix ``struct.error`` exception when creating a file with ``gzip.GzipFile()`` if the system time is outside the range 00:00:00 UTC, January 1, 1970 through 06:28:15 UTC, February 7, 2106.

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others.Learn more.

I think this should also be tweaked since the behaviour of providing an out-of-rangemtime has changed

Sign up for freeto join this conversation on GitHub. Already have an account?Sign in to comment
Reviewers

@huwcbjoneshuwcbjoneshuwcbjones left review comments

@StanFromIrelandStanFromIrelandStanFromIreland left review comments

Assignees
No one assigned
Projects
None yet
Milestone
No milestone
Development

Successfully merging this pull request may close these issues.

3 participants
@adang1345@huwcbjones@StanFromIreland

[8]ページ先頭

©2009-2025 Movatter.jp