Skip to content

Commit 1e92cf8

Browse files
Merge branch 'boxed:main' into fix/454-async-functions-generated-trampoline-wrapper-is-synchronous
2 parents 7bbd9ba + 3ca1d44 commit 1e92cf8

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

e2e_projects/my_lib/src/my_lib/__init__.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
from functools import cache
33
from typing import Union
44
import ctypes
5+
import asyncio
56

67

78
def hello() -> str:
@@ -35,6 +36,7 @@ async def async_consumer():
3536

3637
async def async_generator():
3738
for i in range(10):
39+
await asyncio.sleep(0.001) # pragma: no mutate
3840
yield i
3941

4042
def simple_consumer():

uv.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)