mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-09 21:46:42 +08:00
[Pillow] Update to 10.2.* (#11232)
This commit is contained in:
@@ -14,6 +14,7 @@ PIL\..+?\.logger
|
||||
# Loop variables leaked in global scope
|
||||
PIL.BmpImagePlugin.BmpImageFile.k
|
||||
PIL.BmpImagePlugin.BmpImageFile.v
|
||||
PIL.DdsImagePlugin.item
|
||||
PIL.Image.enum
|
||||
PIL.Image.item
|
||||
PIL.ImageCms.flag
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
version = "10.1.*"
|
||||
version = "10.2.*"
|
||||
upstream_repository = "https://github.com/python-pillow/Pillow"
|
||||
|
||||
[tool.stubtest]
|
||||
|
||||
@@ -1,14 +1,14 @@
|
||||
from _typeshed import Incomplete
|
||||
from typing import IO, AnyStr, Generic, Literal
|
||||
|
||||
class ContainerIO:
|
||||
fh: Incomplete
|
||||
class ContainerIO(Generic[AnyStr]):
|
||||
fh: IO[AnyStr]
|
||||
pos: int
|
||||
offset: Incomplete
|
||||
length: Incomplete
|
||||
def __init__(self, file, offset, length) -> None: ...
|
||||
def isatty(self): ...
|
||||
def seek(self, offset, mode=0) -> None: ...
|
||||
def tell(self): ...
|
||||
def read(self, n: int = 0): ...
|
||||
def readline(self): ...
|
||||
def readlines(self): ...
|
||||
offset: int
|
||||
length: int
|
||||
def __init__(self, file: IO[AnyStr], offset: int, length: int) -> None: ...
|
||||
def isatty(self) -> bool: ...
|
||||
def seek(self, offset: int, mode: Literal[0, 1, 2] = 0) -> None: ...
|
||||
def tell(self) -> int: ...
|
||||
def read(self, n: int = 0) -> AnyStr: ...
|
||||
def readline(self) -> AnyStr: ...
|
||||
def readlines(self) -> list[AnyStr]: ...
|
||||
|
||||
@@ -1,9 +1,241 @@
|
||||
from enum import IntEnum, IntFlag
|
||||
from typing import ClassVar, Final, Literal
|
||||
|
||||
from .ImageFile import ImageFile
|
||||
from .ImageFile import ImageFile, PyDecoder
|
||||
|
||||
DDS_MAGIC: Final = 0x20534444
|
||||
|
||||
class DDSD(IntFlag):
|
||||
CAPS = 0x1
|
||||
HEIGHT = 0x2
|
||||
WIDTH = 0x4
|
||||
PITCH = 0x8
|
||||
PIXELFORMAT = 0x1000
|
||||
MIPMAPCOUNT = 0x20000
|
||||
LINEARSIZE = 0x80000
|
||||
DEPTH = 0x800000
|
||||
|
||||
class DDSCAPS(IntFlag):
|
||||
COMPLEX = 0x8
|
||||
TEXTURE = 0x1000
|
||||
MIPMAP = 0x400000
|
||||
|
||||
class DDSCAPS2(IntFlag):
|
||||
CUBEMAP = 0x200
|
||||
CUBEMAP_POSITIVEX = 0x400
|
||||
CUBEMAP_NEGATIVEX = 0x800
|
||||
CUBEMAP_POSITIVEY = 0x1000
|
||||
CUBEMAP_NEGATIVEY = 0x2000
|
||||
CUBEMAP_POSITIVEZ = 0x4000
|
||||
CUBEMAP_NEGATIVEZ = 0x8000
|
||||
VOLUME = 0x200000
|
||||
|
||||
class DDPF(IntFlag):
|
||||
ALPHAPIXELS = 0x1
|
||||
ALPHA = 0x2
|
||||
FOURCC = 0x4
|
||||
PALETTEINDEXED8 = 0x20
|
||||
RGB = 0x40
|
||||
LUMINANCE = 0x20000
|
||||
|
||||
class DXGI_FORMAT(IntEnum):
|
||||
UNKNOWN = 0
|
||||
R32G32B32A32_TYPELESS = 1
|
||||
R32G32B32A32_FLOAT = 2
|
||||
R32G32B32A32_UINT = 3
|
||||
R32G32B32A32_SINT = 4
|
||||
R32G32B32_TYPELESS = 5
|
||||
R32G32B32_FLOAT = 6
|
||||
R32G32B32_UINT = 7
|
||||
R32G32B32_SINT = 8
|
||||
R16G16B16A16_TYPELESS = 9
|
||||
R16G16B16A16_FLOAT = 10
|
||||
R16G16B16A16_UNORM = 11
|
||||
R16G16B16A16_UINT = 12
|
||||
R16G16B16A16_SNORM = 13
|
||||
R16G16B16A16_SINT = 14
|
||||
R32G32_TYPELESS = 15
|
||||
R32G32_FLOAT = 16
|
||||
R32G32_UINT = 17
|
||||
R32G32_SINT = 18
|
||||
R32G8X24_TYPELESS = 19
|
||||
D32_FLOAT_S8X24_UINT = 20
|
||||
R32_FLOAT_X8X24_TYPELESS = 21
|
||||
X32_TYPELESS_G8X24_UINT = 22
|
||||
R10G10B10A2_TYPELESS = 23
|
||||
R10G10B10A2_UNORM = 24
|
||||
R10G10B10A2_UINT = 25
|
||||
R11G11B10_FLOAT = 26
|
||||
R8G8B8A8_TYPELESS = 27
|
||||
R8G8B8A8_UNORM = 28
|
||||
R8G8B8A8_UNORM_SRGB = 29
|
||||
R8G8B8A8_UINT = 30
|
||||
R8G8B8A8_SNORM = 31
|
||||
R8G8B8A8_SINT = 32
|
||||
R16G16_TYPELESS = 33
|
||||
R16G16_FLOAT = 34
|
||||
R16G16_UNORM = 35
|
||||
R16G16_UINT = 36
|
||||
R16G16_SNORM = 37
|
||||
R16G16_SINT = 38
|
||||
R32_TYPELESS = 39
|
||||
D32_FLOAT = 40
|
||||
R32_FLOAT = 41
|
||||
R32_UINT = 42
|
||||
R32_SINT = 43
|
||||
R24G8_TYPELESS = 44
|
||||
D24_UNORM_S8_UINT = 45
|
||||
R24_UNORM_X8_TYPELESS = 46
|
||||
X24_TYPELESS_G8_UINT = 47
|
||||
R8G8_TYPELESS = 48
|
||||
R8G8_UNORM = 49
|
||||
R8G8_UINT = 50
|
||||
R8G8_SNORM = 51
|
||||
R8G8_SINT = 52
|
||||
R16_TYPELESS = 53
|
||||
R16_FLOAT = 54
|
||||
D16_UNORM = 55
|
||||
R16_UNORM = 56
|
||||
R16_UINT = 57
|
||||
R16_SNORM = 58
|
||||
R16_SINT = 59
|
||||
R8_TYPELESS = 60
|
||||
R8_UNORM = 61
|
||||
R8_UINT = 62
|
||||
R8_SNORM = 63
|
||||
R8_SINT = 64
|
||||
A8_UNORM = 65
|
||||
R1_UNORM = 66
|
||||
R9G9B9E5_SHAREDEXP = 67
|
||||
R8G8_B8G8_UNORM = 68
|
||||
G8R8_G8B8_UNORM = 69
|
||||
BC1_TYPELESS = 70
|
||||
BC1_UNORM = 71
|
||||
BC1_UNORM_SRGB = 72
|
||||
BC2_TYPELESS = 73
|
||||
BC2_UNORM = 74
|
||||
BC2_UNORM_SRGB = 75
|
||||
BC3_TYPELESS = 76
|
||||
BC3_UNORM = 77
|
||||
BC3_UNORM_SRGB = 78
|
||||
BC4_TYPELESS = 79
|
||||
BC4_UNORM = 80
|
||||
BC4_SNORM = 81
|
||||
BC5_TYPELESS = 82
|
||||
BC5_UNORM = 83
|
||||
BC5_SNORM = 84
|
||||
B5G6R5_UNORM = 85
|
||||
B5G5R5A1_UNORM = 86
|
||||
B8G8R8A8_UNORM = 87
|
||||
B8G8R8X8_UNORM = 88
|
||||
R10G10B10_XR_BIAS_A2_UNORM = 89
|
||||
B8G8R8A8_TYPELESS = 90
|
||||
B8G8R8A8_UNORM_SRGB = 91
|
||||
B8G8R8X8_TYPELESS = 92
|
||||
B8G8R8X8_UNORM_SRGB = 93
|
||||
BC6H_TYPELESS = 94
|
||||
BC6H_UF16 = 95
|
||||
BC6H_SF16 = 96
|
||||
BC7_TYPELESS = 97
|
||||
BC7_UNORM = 98
|
||||
BC7_UNORM_SRGB = 99
|
||||
AYUV = 100
|
||||
Y410 = 101
|
||||
Y416 = 102
|
||||
NV12 = 103
|
||||
P010 = 104
|
||||
P016 = 105
|
||||
OPAQUE_420 = 106
|
||||
YUY2 = 107
|
||||
Y210 = 108
|
||||
Y216 = 109
|
||||
NV11 = 110
|
||||
AI44 = 111
|
||||
IA44 = 112
|
||||
P8 = 113
|
||||
A8P8 = 114
|
||||
B4G4R4A4_UNORM = 115
|
||||
P208 = 130
|
||||
V208 = 131
|
||||
V408 = 132
|
||||
SAMPLER_FEEDBACK_MIN_MIP_OPAQUE = 189
|
||||
SAMPLER_FEEDBACK_MIP_REGION_USED_OPAQUE = 190
|
||||
|
||||
class D3DFMT(IntEnum):
|
||||
UNKNOWN = 0
|
||||
R8G8B8 = 20
|
||||
A8R8G8B8 = 21
|
||||
X8R8G8B8 = 22
|
||||
R5G6B5 = 23
|
||||
X1R5G5B5 = 24
|
||||
A1R5G5B5 = 25
|
||||
A4R4G4B4 = 26
|
||||
R3G3B2 = 27
|
||||
A8 = 28
|
||||
A8R3G3B2 = 29
|
||||
X4R4G4B4 = 30
|
||||
A2B10G10R10 = 31
|
||||
A8B8G8R8 = 32
|
||||
X8B8G8R8 = 33
|
||||
G16R16 = 34
|
||||
A2R10G10B10 = 35
|
||||
A16B16G16R16 = 36
|
||||
A8P8 = 40
|
||||
P8 = 41
|
||||
L8 = 50
|
||||
A8L8 = 51
|
||||
A4L4 = 52
|
||||
V8U8 = 60
|
||||
L6V5U5 = 61
|
||||
X8L8V8U8 = 62
|
||||
Q8W8V8U8 = 63
|
||||
V16U16 = 64
|
||||
A2W10V10U10 = 67
|
||||
D16_LOCKABLE = 70
|
||||
D32 = 71
|
||||
D15S1 = 73
|
||||
D24S8 = 75
|
||||
D24X8 = 77
|
||||
D24X4S4 = 79
|
||||
D16 = 80
|
||||
D32F_LOCKABLE = 82
|
||||
D24FS8 = 83
|
||||
D32_LOCKABLE = 84
|
||||
S8_LOCKABLE = 85
|
||||
L16 = 81
|
||||
VERTEXDATA = 100
|
||||
INDEX16 = 101
|
||||
INDEX32 = 102
|
||||
Q16W16V16U16 = 110
|
||||
R16F = 111
|
||||
G16R16F = 112
|
||||
A16B16G16R16F = 113
|
||||
R32F = 114
|
||||
G32R32F = 115
|
||||
A32B32G32R32F = 116
|
||||
CxV8U8 = 117
|
||||
A1 = 118
|
||||
A2B10G10R10_XR_BIAS = 119
|
||||
BINARYBUFFER = 199
|
||||
|
||||
UYVY: int
|
||||
R8G8_B8G8: int
|
||||
YUY2: int
|
||||
G8R8_G8B8: int
|
||||
DXT1: int
|
||||
DXT2: int
|
||||
DXT3: int
|
||||
DXT4: int
|
||||
DXT5: int
|
||||
DX10: int
|
||||
BC4S: int
|
||||
BC4U: int
|
||||
BC5S: int
|
||||
BC5U: int
|
||||
ATI1: int
|
||||
ATI2: int
|
||||
MULTI2_ARGB8: int
|
||||
|
||||
DDSD_CAPS: Final = 0x1
|
||||
DDSD_HEIGHT: Final = 0x2
|
||||
DDSD_WIDTH: Final = 0x4
|
||||
@@ -77,4 +309,6 @@ DXGI_FORMAT_BC7_UNORM_SRGB: Final = 99
|
||||
class DdsImageFile(ImageFile):
|
||||
format: ClassVar[Literal["DDS"]]
|
||||
format_description: ClassVar[str]
|
||||
def load_seek(self, pos) -> None: ...
|
||||
def load_seek(self, pos: int) -> None: ...
|
||||
|
||||
class DdsRgbDecoder(PyDecoder): ...
|
||||
|
||||
@@ -1,5 +1,6 @@
|
||||
from _typeshed import FileDescriptorOrPath, Incomplete, SupportsRead
|
||||
from enum import IntEnum
|
||||
from pathlib import Path
|
||||
from typing import Final, Literal, Protocol
|
||||
|
||||
from PIL.Image import Transpose
|
||||
@@ -19,7 +20,7 @@ class ImageFont:
|
||||
def getlength(self, text, *args, **kwargs): ...
|
||||
|
||||
class FreeTypeFont:
|
||||
path: str | bytes | SupportsRead[bytes] | None
|
||||
path: str | bytes | Path | SupportsRead[bytes] | None
|
||||
size: int
|
||||
index: int
|
||||
encoding: str
|
||||
@@ -28,7 +29,7 @@ class FreeTypeFont:
|
||||
font: Incomplete
|
||||
def __init__(
|
||||
self,
|
||||
font: str | bytes | SupportsRead[bytes] | None = None,
|
||||
font: str | bytes | Path | SupportsRead[bytes] | None = None,
|
||||
size: int = 10,
|
||||
index: int = 0,
|
||||
encoding: str = "",
|
||||
@@ -82,7 +83,7 @@ class FreeTypeFont:
|
||||
): ...
|
||||
def font_variant(
|
||||
self,
|
||||
font: str | bytes | SupportsRead[bytes] | None = None,
|
||||
font: str | bytes | Path | SupportsRead[bytes] | None = None,
|
||||
size: int | None = None,
|
||||
index: int | None = None,
|
||||
encoding: str | None = None,
|
||||
|
||||
@@ -1,21 +1,23 @@
|
||||
from _typeshed import Incomplete
|
||||
from typing import ClassVar, Literal
|
||||
from collections.abc import Iterable
|
||||
from typing import ClassVar, Final, Literal
|
||||
from typing_extensions import deprecated
|
||||
|
||||
from ._imaging import _PixelAccessor
|
||||
from .ImageFile import ImageFile
|
||||
|
||||
COMPRESSION: Incomplete
|
||||
PAD: Incomplete
|
||||
COMPRESSION: dict[int, str]
|
||||
PAD: Final[bytes]
|
||||
|
||||
def i(c): ...
|
||||
def dump(c) -> None: ...
|
||||
@deprecated("Deprecated since 10.2.0")
|
||||
def i(c: bytes) -> int: ...
|
||||
@deprecated("Deprecated since 10.2.0")
|
||||
def dump(c: Iterable[int | bytes]) -> None: ...
|
||||
|
||||
class IptcImageFile(ImageFile):
|
||||
format: ClassVar[Literal["IPTC"]]
|
||||
format_description: ClassVar[str]
|
||||
def getint(self, key): ...
|
||||
def field(self): ...
|
||||
im: Incomplete
|
||||
def getint(self, key: tuple[int, int]) -> int: ...
|
||||
def field(self) -> tuple[tuple[int, int] | None, int]: ...
|
||||
def load(self) -> _PixelAccessor: ...
|
||||
|
||||
def getiptcinfo(im): ...
|
||||
|
||||
@@ -1,10 +1,12 @@
|
||||
from _typeshed import Incomplete, Unused
|
||||
from types import TracebackType
|
||||
from typing_extensions import Self
|
||||
|
||||
from .ContainerIO import ContainerIO
|
||||
|
||||
class TarIO(ContainerIO):
|
||||
fh: Incomplete
|
||||
def __init__(self, tarfile, file) -> None: ...
|
||||
def __enter__(self): ...
|
||||
def __exit__(self, *args: Unused) -> None: ...
|
||||
class TarIO(ContainerIO[bytes]):
|
||||
def __init__(self, tarfile: str, file: str) -> None: ...
|
||||
def __enter__(self) -> Self: ...
|
||||
def __exit__(
|
||||
self, exc_type: type[BaseException] | None, exc_val: BaseException | None, exc_tb: TracebackType | None
|
||||
) -> None: ...
|
||||
def close(self) -> None: ...
|
||||
|
||||
@@ -1,4 +1,3 @@
|
||||
from _typeshed import Incomplete
|
||||
from typing import ClassVar, Literal
|
||||
from typing_extensions import TypeAlias
|
||||
|
||||
@@ -11,9 +10,9 @@ _XMP_Tags: TypeAlias = dict[str, str | _XMP_Tags]
|
||||
class WebPImageFile(ImageFile):
|
||||
format: ClassVar[Literal["WEBP"]]
|
||||
format_description: ClassVar[str]
|
||||
|
||||
def getxmp(self) -> _XMP_Tags: ...
|
||||
def seek(self, frame) -> None: ...
|
||||
fp: Incomplete
|
||||
tile: Incomplete
|
||||
def seek(self, frame: int) -> None: ...
|
||||
def load(self) -> _PixelAccessor: ...
|
||||
def tell(self): ...
|
||||
def load_seek(self, pos: int) -> None: ...
|
||||
def tell(self) -> int: ...
|
||||
|
||||
Reference in New Issue
Block a user