Skip to content

Commit 9117da3

Browse files
committed
3.14b3
1 parent c5e1dab commit 9117da3

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.07.02b"
12+
__version__ = "2025.07.05b"
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
@@ -76,7 +76,7 @@ def _chain_fut[R](c_fut: cf.Future[R], a_fut: asyncio.Future[R]) -> None:
7676
class _WrappedSignature[**P, R]:
7777
#: PYUPGRADE: Ensure inspect.signature still accepts this
7878
# as func.__signature__
79-
# Known working: py 3.12.0 - py3.14b2 range inclusive
79+
# Known working: py 3.12.0 - py3.14b3 range inclusive
8080
def __init__(self, f: TaskCoroFunc[P, R], w: TaskFunc[P, R]) -> None:
8181
self._f: Callable[..., t.Any] = f # anotation needed for inspect use below....
8282
self._w = w
@@ -192,7 +192,7 @@ def wrapped(*args: P.args, **kwargs: P.kwargs) -> asyncio.Task[R]:
192192

193193
return a_fut
194194

195-
# PYUPGRADE: 3.14.0 recheck (last checked 3.14b2), 3.15+
195+
# PYUPGRADE: 3.14.0 recheck (last checked 3.14b3), 3.15+
196196
wrapped.__signature__ = _WrappedSignature(coro, wrapped) # type: ignore[attr-defined]
197197

198198
return wrapped

0 commit comments

Comments
 (0)