We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Comment from Ma Lin: ae185f9#r54497564
I search pyzstd on GitHub (I'm the author of it), then I found this code. The .close() method was updated. If super().close() fails, .zstd_file can be closed at once. This is a very minor fix. def close(self): try: super().close() finally: self.zstd_file.close()
I search pyzstd on GitHub (I'm the author of it), then I found this code.
pyzstd
The .close() method was updated. If super().close() fails, .zstd_file can be closed at once. This is a very minor fix.
.close()
super().close()
.zstd_file
def close(self): try: super().close() finally: self.zstd_file.close()
in reference to
range-streams/src/range_streams/codecs/zstd/tar.py
Lines 25 to 27 in 052274a
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Comment from Ma Lin: ae185f9#r54497564
in reference to
range-streams/src/range_streams/codecs/zstd/tar.py
Lines 25 to 27 in 052274a
The text was updated successfully, but these errors were encountered: