Full Changelog: v0.23.1...v0.23.2
Features
- TypeVarTuple is now used to fully type
nursery.start_soon()
,trio.run()
,trio.to_thread.run_sync()
, and other similar functions accepting(func, *args)
. This means type checkers will be able to verify types are used correctly.nursery.start()
is not fully typed yet however. (#2881)
Bugfixes
- Make pyright recognize
open_memory_channel
as generic. (#2873)