@@ -264,7 +264,7 @@ def setitem(a: MutableMapping[_K, _V], b: _K, c: _V, /) -> None: ...
264264def length_hint (obj : object , default : int = 0 , / ) -> int : ...
265265def iadd (a : _SupportsIAdd [_T_contra , _T_co ], b : _T_contra , / ) -> _T_co : ...
266266def iand (a : _SupportsIAnd [_T_contra , _T_co ], b : _T_contra , / ) -> _T_co : ...
267- def iconcat (a : MutableSequence [_T ], b : Sequence [_T ], / ) -> MutableSequence [_T ]: ...
267+ def iconcat (a : MutableSequence [_T ], b : Sequence [_T ], / ) -> MutableSequence [_T ]: ... # currently impossible to type more precisely
268268def ifloordiv (a : _SupportsIFloorDiv [_T_contra , _T_co ], b : _T_contra , / ) -> _T_co : ...
269269def ilshift (a : _SupportsILShift [_T_contra , _T_co ], b : _T_contra , / ) -> _T_co : ...
270270def imod (a : _SupportsIMod [_T_contra , _T_co ], b : _T_contra , / ) -> _T_co : ...
@@ -283,10 +283,7 @@ if sys.version_info >= (3, 11):
283283if sys .version_info >= (3 , 12 ):
284284 from collections .abc import Buffer
285285
286- _B = TypeVar ("_B" , bound = Buffer )
287- @overload
288- def _compare_digest (a : str , b : str , / ) -> bool : ...
289- @overload
286+ _B = TypeVar ("_B" , str , Buffer )
290287 def _compare_digest (a : _B , b : _B , / ) -> bool : ...
291288
292289else :
0 commit comments