Skip to content

Commit 0c3c667

Browse files
committed
zstd: replace star import with explicit names
1 parent bfac7d2 commit 0c3c667

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

Lib/compression/zstd/__init__.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,8 @@
2828

2929
import _zstd
3030
import enum
31-
from _zstd import *
31+
from _zstd import (get_frame_size, zstd_version, zstd_version_info,
32+
ZstdCompressor, ZstdDecompressor, ZstdDict, ZstdError)
3233
from compression.zstd._zstdfile import ZstdFile, open, _nbytes
3334

3435
COMPRESSION_LEVEL_DEFAULT = _zstd._compressionLevel_values[0]

0 commit comments

Comments
 (0)