@@ -151,13 +151,13 @@ if sys.version_info >= (3, 10):
151151 @overload
152152 def gather (* coros_or_futures : _FutureLike [_T ], return_exceptions : Literal [False ] = False ) -> Future [list [_T ]]: ... # type: ignore[overload-overlap]
153153 @overload
154- def gather (coro_or_future1 : _FutureLike [_T1 ], / , * , return_exceptions : bool ) -> Future [tuple [_T1 | BaseException ]]: ... # type: ignore[overload-overlap]
154+ def gather (coro_or_future1 : _FutureLike [_T1 ], / , * , return_exceptions : bool ) -> Future [tuple [_T1 | BaseException ]]: ...
155155 @overload
156- def gather ( # type: ignore[overload-overlap]
156+ def gather (
157157 coro_or_future1 : _FutureLike [_T1 ], coro_or_future2 : _FutureLike [_T2 ], / , * , return_exceptions : bool
158158 ) -> Future [tuple [_T1 | BaseException , _T2 | BaseException ]]: ...
159159 @overload
160- def gather ( # type: ignore[overload-overlap]
160+ def gather (
161161 coro_or_future1 : _FutureLike [_T1 ],
162162 coro_or_future2 : _FutureLike [_T2 ],
163163 coro_or_future3 : _FutureLike [_T3 ],
@@ -166,7 +166,7 @@ if sys.version_info >= (3, 10):
166166 return_exceptions : bool ,
167167 ) -> Future [tuple [_T1 | BaseException , _T2 | BaseException , _T3 | BaseException ]]: ...
168168 @overload
169- def gather ( # type: ignore[overload-overlap]
169+ def gather (
170170 coro_or_future1 : _FutureLike [_T1 ],
171171 coro_or_future2 : _FutureLike [_T2 ],
172172 coro_or_future3 : _FutureLike [_T3 ],
@@ -176,7 +176,7 @@ if sys.version_info >= (3, 10):
176176 return_exceptions : bool ,
177177 ) -> Future [tuple [_T1 | BaseException , _T2 | BaseException , _T3 | BaseException , _T4 | BaseException ]]: ...
178178 @overload
179- def gather ( # type: ignore[overload-overlap]
179+ def gather (
180180 coro_or_future1 : _FutureLike [_T1 ],
181181 coro_or_future2 : _FutureLike [_T2 ],
182182 coro_or_future3 : _FutureLike [_T3 ],
@@ -189,7 +189,7 @@ if sys.version_info >= (3, 10):
189189 tuple [_T1 | BaseException , _T2 | BaseException , _T3 | BaseException , _T4 | BaseException , _T5 | BaseException ]
190190 ]: ...
191191 @overload
192- def gather ( # type: ignore[overload-overlap]
192+ def gather (
193193 coro_or_future1 : _FutureLike [_T1 ],
194194 coro_or_future2 : _FutureLike [_T2 ],
195195 coro_or_future3 : _FutureLike [_T3 ],
0 commit comments