Live data from Hacker News

Viewing profile — gcharbonnier

gcharbonnier

HN member
Joined
Wed, Dec 04, 2024, 11:11 AM UTC
HN karma
2
Public activity
2 items

About gcharbonnier

No profile information was provided.

Recent public activity

  1. comment
    Comment #45130703

    Nothing and that’s the problem because even though you can do it, your event loop will block until foo has finished executing, meaning that in this thread no other coroutine will b…

  2. comment
    Comment #44140116

    async with is just syntactic sugar. You could very well call __aenter__ and __aexit__ manually. You could also use an AsyncExitStack, call __aenter__ manually, then enter_async_con…