cm0002@lemmy.world to Python@programming.dev · 17 days agoPython's asyncio: A Hands-On Walkthroughrealpython.comexternal-linkmessage-square6linkfedilinkarrow-up115arrow-down10
arrow-up115arrow-down1external-linkPython's asyncio: A Hands-On Walkthroughrealpython.comcm0002@lemmy.world to Python@programming.dev · 17 days agomessage-square6linkfedilink
minus-squarelogging_strict@programming.devlinkfedilinkarrow-up1·15 days agoThe term is used by the trio package author. You are in for a treat! Go read the docs for trio right now! Then anyio. Take what the trio author has to say very very seriously. The term colored function means, in order to support concurrency, needing to modify a function with special language syntax, in this case, async.
minus-squarekebab@endlesstalk.orglinkfedilinkEnglisharrow-up2·14 days agoAwesome, thank you for your insights!
The term is used by the trio package author. You are in for a treat! Go read the docs for trio right now! Then anyio.
Take what the trio author has to say very very seriously.
The term
colored function
means, in order to support concurrency, needing to modify a function with special language syntax, in this case,async
.Awesome, thank you for your insights!