diff options
author | Emma Smith <emma@emmatyping.dev> | 2025-05-14 05:08:27 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-05-14 12:08:27 +0000 |
commit | b44c824856a351472a9627da066bfbde9d8ae64e (patch) | |
tree | 61175959c4160138a85a8fc5d6edaeea945fbc8f /Lib/compression/gzip.py | |
parent | e7ad59bd73078c2f4cdcfddadacb51c43338fe93 (diff) | |
download | cpython-b44c824856a351472a9627da066bfbde9d8ae64e.tar.gz cpython-b44c824856a351472a9627da066bfbde9d8ae64e.zip |
gh-132983: Style improvements for `compression.zstd` (#133547)
Co-authored-by: Adam Turner <9087854+AA-Turner@users.noreply.github.com>
Diffstat (limited to 'Lib/compression/gzip.py')
-rw-r--r-- | Lib/compression/gzip.py | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Lib/compression/gzip.py b/Lib/compression/gzip.py new file mode 100644 index 00000000000..552f48f948a --- /dev/null +++ b/Lib/compression/gzip.py @@ -0,0 +1,5 @@ +import gzip +__doc__ = gzip.__doc__ +del gzip + +from gzip import * |