Skip to content

Commit 5c25673

Browse files
line fixes
1 parent b3b5a95 commit 5c25673

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

InternalDocs/asyncio.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,12 +58,12 @@ typedef struct PyThreadState {
5858
...
5959
struct llist_node asyncio_tasks_head;
6060
} PyThreadState;
61+
6162
typedef struct PyInterpreterState {
6263
...
6364
struct llist_node asyncio_tasks_head;
6465
PyMutex asyncio_tasks_lock;
6566
} PyInterpreterState;
66-
6767
```
6868

6969
When a task is created, it is added to the current thread's list of tasks by the `register_task` function. When the task is done, it is removed from the list by the `unregister_task` function. In free-threading, the thread id of thread which

0 commit comments

Comments
 (0)