Type annotations: _imaging.pyi: Amend Image.resize after API change.

This commit is contained in:
neiljp (Neil Pilgrim) 2017-08-31 15:40:18 -07:00 committed by Eric Soroos
parent f4765c9750
commit 9f011aafe3

View File

@ -63,7 +63,7 @@ class ImagingCore:
def putdata(self, data: Any, scale: float=1.0, offset: float=0.0) -> None: ...
def quantize(self, colors: int=..., method: int=..., kmeans: int=...) -> ImagingCore: ...
def rankfilter(self, size: int, rank: int) -> ImagingCore: ...
def resize(self, size: Size, resample: int=...) -> ImagingCore: ...
def resize(self, size: Size, resample: int=..., box: LURD=(0,0,0,0)) -> ImagingCore: ...
def transpose(self, method: int) -> ImagingCore: ...
def transform2(self, box: LURD, core: ImagingCore, method: int,
data: List[float], resample: int=..., fill: int=...) -> None: ...