Add bz2.__all__ (#7290)

This commit is contained in:
Alex Waygood
2022-02-19 20:23:03 +00:00
committed by GitHub
parent 5df6314d4f
commit 98f94c3ba1

View File

@@ -5,6 +5,8 @@ from _typeshed import ReadableBuffer, Self, StrOrBytesPath, WriteableBuffer
from typing import IO, Any, Iterable, Protocol, TextIO, overload
from typing_extensions import Literal, SupportsIndex, final
__all__ = ["BZ2File", "BZ2Compressor", "BZ2Decompressor", "open", "compress", "decompress"]
# The following attributes and methods are optional:
# def fileno(self) -> int: ...
# def close(self) -> object: ...