Skip to content
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 our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

gh-130806: emit ResourceWarning if GzipFile unclosed #130905

Merged
merged 2 commits into from
Mar 13, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 15 additions & 1 deletion Lib/gzip.py
Original file line number Diff line number Diff line change
Expand Up @@ -193,6 +193,11 @@ def __init__(self, filename=None, mode=None,

"""

# Ensure attributes exist at __del__
self.mode = None
self.fileobj = None
self._buffer = None

if mode and ('t' in mode or 'U' in mode):
raise ValueError("Invalid mode: {!r}".format(mode))
if mode and 'b' not in mode:
Expand Down Expand Up @@ -358,7 +363,9 @@ def closed(self):

def close(self):
fileobj = self.fileobj
if fileobj is None or self._buffer.closed:
if fileobj is None:
return
if self._buffer is None or self._buffer.closed:
return
try:
if self.mode == WRITE:
Expand Down Expand Up @@ -435,6 +442,13 @@ def readline(self, size=-1):
self._check_not_closed()
return self._buffer.readline(size)

def __del__(self):
if self.mode == WRITE and not self.closed:
import warnings
warnings.warn("unclosed GzipFile",
ResourceWarning, source=self, stacklevel=2)

super().__del__()

def _read_exact(fp, n):
'''Read exactly *n* bytes from `fp`
Expand Down
8 changes: 5 additions & 3 deletions Lib/test/test_gzip.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
import struct
import sys
import unittest
import warnings
from subprocess import PIPE, Popen
from test.support import catch_unraisable_exception
from test.support import import_helper
Expand Down Expand Up @@ -867,9 +868,10 @@ def test_refloop_unraisable(self):
# fileobj would be closed before the GzipFile as the result of a
# reference loop. See issue gh-129726
with catch_unraisable_exception() as cm:
gzip.GzipFile(fileobj=io.BytesIO(), mode="w")
gc.collect()
self.assertIsNone(cm.unraisable)
with self.assertWarns(ResourceWarning):
gzip.GzipFile(fileobj=io.BytesIO(), mode="w")
gc.collect()
self.assertIsNone(cm.unraisable)


class TestOpen(BaseTest):
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
Deleting :class:`gzip.GzipFile` before it is closed now emits a
:exc:`ResourceWarning`.
Loading