包含多个语句的 `async with` 会同步执行吗?

Will `async with` containing multiple statements execute them synchronously?

我正在使用 aiosqlite 库,想知道以下代码是按顺序还是异步执行插入?

async with (
    db.execute("INSERT ..."),
    db.execute("INSERT ..."),
):
    pass

我是按顺序猜的?

根据Barmar's评论,他们确实会按顺序执行。