diff --git a/docs/source/awesome-trio-libraries.rst b/docs/source/awesome-trio-libraries.rst index 01ab0728e1..eb302550c4 100644 --- a/docs/source/awesome-trio-libraries.rst +++ b/docs/source/awesome-trio-libraries.rst @@ -91,7 +91,8 @@ RPC Testing ------- * `pytest-trio `__ - Pytest plugin for trio. -* `hypothesis-trio `__ - Hypothesis plugin for trio. +* `hypothesis-trio `__ - Hypothesis supports Trio out of the box for + ``@given(...)`` tests; this extension provides Trio-compatible stateful testing. * `trustme `__ - #1 quality TLS certs while you wait, for the discerning tester. * `pytest-aio `_ - Pytest plugin with support for trio, curio, asyncio * `logot `_ - Test whether your async code is logging correctly. @@ -99,7 +100,6 @@ Testing Tools and Utilities ------------------- -* `trio-typing `__ - Type hints for Trio and related projects. * `trio-util `__ - An assortment of utilities for the Trio async/await framework. * `flake8-trio `__ - Highly opinionated linter for various sorts of problems in Trio and/or AnyIO. Can run as a flake8 plugin, or standalone with support for autofixing some errors. * `tricycle `__ - This is a library of interesting-but-maybe-not-yet-fully-proven extensions to Trio. @@ -109,8 +109,9 @@ Tools and Utilities * `triotp `__ - OTP framework for Python Trio * `aioresult `__ - Get the return value of a background async function in Trio or anyio, along with a simple Future class and wait utilities + Trio/Asyncio Interoperability ----------------------------- -* `anyio `__ - AnyIO is a asynchronous compatibility API that allows applications and libraries written against it to run unmodified on asyncio, curio and trio. +* `anyio `__ - AnyIO is a asynchronous compatibility API that allows applications and libraries written against it to run unmodified on asyncio or trio. * `sniffio `__ - This is a tiny package whose only purpose is to let you detect which async library your code is running under. * `trio-asyncio `__ - Trio-Asyncio lets you use many asyncio libraries from your Trio app.