Let us walk on the 3-isogeny graph
Loading...
Searching...
No Matches
tornadoweb.py
Go to the documentation of this file.
1# Copyright 2017 Elisey Zanko
2#
3# Licensed under the Apache License, Version 2.0 (the "License");
4# you may not use this file except in compliance with the License.
5# You may obtain a copy of the License at
6#
7# http://www.apache.org/licenses/LICENSE-2.0
8#
9# Unless required by applicable law or agreed to in writing, software
10# distributed under the License is distributed on an "AS IS" BASIS,
11# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12# See the License for the specific language governing permissions and
13# limitations under the License.
14
15import sys
16import typing
17
18from pip._vendor.tenacity import BaseRetrying
19from pip._vendor.tenacity import DoAttempt
20from pip._vendor.tenacity import DoSleep
21from pip._vendor.tenacity import RetryCallState
22
23from tornado import gen
24
26 from tornado.concurrent import Future
27
28_RetValT = typing.TypeVar("_RetValT")
29
30
32 def __init__(self, sleep: "typing.Callable[[float], Future[None]]" = gen.sleep, **kwargs: typing.Any) -> None:
33 super().__init__(**kwargs)
34 self.sleepsleep = sleep
35
36 @gen.coroutine # type: ignore[misc]
38 self,
39 fn: "typing.Callable[..., typing.Union[typing.Generator[typing.Any, typing.Any, _RetValT], Future[_RetValT]]]",
40 *args: typing.Any,
41 **kwargs: typing.Any,
42 ) -> "typing.Generator[typing.Any, typing.Any, _RetValT]":
43 self.begin()
44
45 retry_state = RetryCallState(retry_object=self, fn=fn, args=args, kwargs=kwargs)
46 while True:
47 do = self.iter(retry_state=retry_state)
48 if isinstance(do, DoAttempt):
49 try:
50 result = yield fn(*args, **kwargs)
51 except BaseException: # noqa: B902
52 retry_state.set_exception(sys.exc_info()) # type: ignore[arg-type]
53 else:
55 elif isinstance(do, DoSleep):
57 yield self.sleepsleep(do)
58 else:
59 raise gen.Return(do)
t.Union[DoAttempt, DoSleep, t.Any] iter(self, "RetryCallState" retry_state)
Definition __init__.py:307
"typing.Generator[typing.Any, typing.Any, _RetValT]" __call__(self, "typing.Callable[..., typing.Union[typing.Generator[typing.Any, typing.Any, _RetValT], Future[_RetValT]]]" fn, *typing.Any args, **typing.Any kwargs)
Definition tornadoweb.py:42
None __init__(self, "typing.Callable[[float], Future[None]]" sleep=gen.sleep, **typing.Any kwargs)
Definition tornadoweb.py:32
for i