Skip to content

Commit 9cb4020

Browse files
committed
3.14b2 checked
1 parent 5912c11 commit 9cb4020

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/async_utils/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
__author__ = "Michael Hall"
1010
__license__ = "Apache-2.0"
1111
__copyright__ = "Copyright 2020-Present Michael Hall"
12-
__version__ = "2025.05.26b"
12+
__version__ = "2025.05.27b"
1313

1414
import os
1515
import sys

src/async_utils/task_cache.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ def _chain_fut[R](c_fut: cf.Future[R], a_fut: asyncio.Future[R]) -> None:
6868
class _WrappedSignature[**P, R]:
6969
#: PYUPGRADE: Ensure inspect.signature still accepts this
7070
# as func.__signature__
71-
# Known working: py 3.12.0 - py3.14b1 range inclusive
71+
# Known working: py 3.12.0 - py3.14b2 range inclusive
7272
def __init__(self, f: TaskCoroFunc[P, R], w: TaskFunc[P, R]) -> None:
7373
self._f: Callable[..., t.Any] = f # anotation needed for inspect use below....
7474
self._w = w
@@ -184,7 +184,7 @@ def wrapped(*args: P.args, **kwargs: P.kwargs) -> asyncio.Task[R]:
184184

185185
return a_fut
186186

187-
# PYUPGRADE: 3.14.0 recheck (last checked 3.14b1), 3.15+
187+
# PYUPGRADE: 3.14.0 recheck (last checked 3.14b2), 3.15+
188188
wrapped.__signature__ = _WrappedSignature(coro, wrapped) # type: ignore[attr-defined]
189189

190190
return wrapped

0 commit comments

Comments
 (0)