From 597ae4b690f2b2d8fead07194f983ca40ebdef45 Mon Sep 17 00:00:00 2001 From: Tyler Goodlet Date: Tue, 12 Apr 2022 15:59:33 -0400 Subject: [PATCH] Add nooz file --- nooz/304.feature.rst | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 nooz/304.feature.rst diff --git a/nooz/304.feature.rst b/nooz/304.feature.rst new file mode 100644 index 0000000..820ecf7 --- /dev/null +++ b/nooz/304.feature.rst @@ -0,0 +1,12 @@ +Add a new ``to_asyncio.LinkedTaskChannel.subscribe()`` which gives +task-oriented broadcast functionality semantically equivalent to +``tractor.MsgStream.subscribe()`` this makes it possible for multiple +``trio``-side tasks to consume ``asyncio``-side task msgs in tandem. + +Further Improvements to the test suite were added in this patch set +including a new scenario test for a sub-actor managed "service nursery" +(implementing the basics of a "service manager") including use of +*infected asyncio* mode. Further we added a lower level +``test_trioisms.py`` to start to track issues we need to work around in +``trio`` itself which in this case included a bug we were trying to +solve related to https://github.com/python-trio/trio/issues/2258.