8000 gh-129640: Add tests for reference cycle in `gzip.GzipFile` by Mr-Sunglasses · Pull Request #130916 · python/cpython · GitHub
[go: up one dir, main page]

Skip to content

gh-129640: Add tests for reference cycle in gzip.GzipFile #130916

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

Open
wants to merge 13 commits into
base: main
Choose a base branch
from
Open
Changes from 1 commit
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
Prev Previous commit
Next Next commit
REVERT the changes in gzip module
  • Loading branch information
Mr-Sunglasses committed Mar 8, 2025
commit 5b9f6e6904f79894179d275fa587cc667b145237
3 changes: 0 additions & 3 deletions Lib/gzip.py
Original file line number Diff line number Diff line change
Expand Up @@ -143,9 +143,6 @@ def seekable(self):
def writable(self):
return True

def __del__(self):
del self.gzip_file


class GzipFile(_compression.BaseStream):
"""The GzipFile class simulates most of the methods of a file object with
Expand Down
0