You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
***This is a fork of [`pyo3-asyncio`](https://github.com/awestlake87/pyo3-asyncio/) to deliver compatibility for PyO3 0.21. This may be the base for a permanent fork in the future, depending on the status of the original `pyo3-asyncio` maintainer.***
More details on the usage of this library can be found in the [API docs](https://awestlake87.github.io/pyo3-asyncio/master/doc) and the primer below.
111
+
More details on the usage of this library can be found in the API docs
112
+
and the primer below.
112
113
113
114
#### PyO3 Native Rust Modules
114
115
@@ -423,7 +424,7 @@ Python allows you to use alternatives to the default `asyncio` event loop. One
423
424
popular alternative is `uvloop`. In `v0.13` using non-standard event loops was
424
425
a bit of an ordeal, but in `v0.14` it's trivial.
425
426
426
-
#### Using `uvloop` in a PyO3 Asyncio Native Extensions
427
+
#### Using `uvloop` in a PyO3 Native Extensions
427
428
428
429
```toml
429
430
# Cargo.toml
@@ -534,7 +535,7 @@ fn main() -> PyResult<()> {
534
535
535
536
### Additional Information
536
537
537
-
- Managing event loop references can be tricky with pyo3-asyncio. See [Event Loop References and ContextVars](https://awestlake87.github.io/pyo3-asyncio/master/doc/pyo3_async_runtimes/#event-loop-references-and-contextvars) in the API docs to get a better intuition for how event loop references are managed in this library.
538
+
- Managing event loop references can be tricky with pyo3-async-runtimes. See [Event Loop References and ContextVars](https://awestlake87.github.io/pyo3-asyncio/master/doc/pyo3_async_runtimes/#event-loop-references-and-contextvars) in the API docs to get a better intuition for how event loop references are managed in this library.
538
539
- Testing pyo3-asyncio libraries and applications requires a custom test harness since Python requires control over the main thread. You can find a testing guide in the [API docs for the `testing` module](https://awestlake87.github.io/pyo3-asyncio/master/doc/pyo3_async_runtimes/testing)
0 commit comments