File tree Expand file tree Collapse file tree 2 files changed +2
-4
lines changed
docs/1. Introduction to Asynchronous Programming Expand file tree Collapse file tree 2 files changed +2
-4
lines changed Original file line number Diff line number Diff line change @@ -37,7 +37,7 @@ The [event loop](https://docs.python.org/3/library/asyncio-eventloop.html) is th
37
37
### coroutines
38
38
Coroutines have been described as [ "functions whose execution you can pause"] ( https://en.wikipedia.org/wiki/Coroutine ) . <br >
39
39
This seems confusing, but wait, we will clarify it.
40
- Anything in Python that can be implemented with the ``` async def ``` statement is a coroutine. <br >
40
+ Anything in Python that can be implemented with the ``` async def ``` statement is a coroutine function . <br >
41
41
Here ``` func ``` is a coroutine:
42
42
``` python
43
43
async def func ():
Original file line number Diff line number Diff line change 1
1
pytest ~= 8.3.3
2
2
httpx ~= 0.27.2
3
- uvicorn ~= 0.30.2
4
- gunicorn ~= 19.9.0
5
- starlette == 0.37.2
3
+ starlette == 0.41.0
You can’t perform that action at this time.
0 commit comments