-
Only on linux64, and only inside the manylinux docker used for the buildbot I see [test_asyncio is failing](https://buildbot.pypy.org/summary/longrepr?testname=%3Aunmodified&builder=pypy-c-jit-linux-x…
-
here is my code
`test_something.py`
```py
@pytest_asyncio.fixture(scope="session")
async def setup_env():
import asyncio
loop1 = asyncio.get_running_loop()
print(f"setup_e…
-
#### Bug Report Checklist
- [X] Have you provided a full/minimal spec to reproduce the issue?
- [X] Have you validated the input using an OpenAPI validator ([example](https://apidevtools.org/swagg…
-
### System OS
All
### Python Version
3.13 (CPython)
### Install Source
pip / PyPi
### Install version / commit hash
v4.2.10
### Steps to reproduce - Ensure to include actual li…
-
Tasks without saved reference can be garbage collected, and several functions in asyncio *automatically* converts coroutines into tasks - which means it's ~impossible to save a strong reference to tho…
-
My program used to run perfectly fine, but today I encountered the following error. I suspect that Twitter has changed its API. What do you think?
File "D:\ljtCodingWorks\PythonWorks\TwitterSpy\r…
-
This will require us to handle the
- runtime
- async event loop
Benefits include
- better performance
-
### Bug summary
version 1 with semaphore
```
import asyncio
from prefect import task, flow
sem = asyncio.Semaphore(100)
@task
async def print_value(value):
async with sem:
a…
-
like the title says, steps to reproduce:
```python
import asyncio
import asyncssh
async def reproduce(machine, src_path, dst_path):
conn = await asyncssh.connect(machine)
sftp = await …
-
When run the examples:
from characterai import aiocai
import asyncio
async def main():
char = ""
client = aiocai.Client("")
me = await client.get_me()
async with await c…