<hexology>
has anyone here developed a nontrivial application using the pypy "stackless" features? https://doc.pypy.org/en/latest/stackless.html i only learned about stackless python after i learned asyncio, so i never felt a strong need to try a different system. is there an advantage still to the pypy greenlet system? the big pull of asyncio (and to some extent trio) nowadays is the rich library ecosystem developing on top of it, and first-class syntax support.
<hexology>
i've also been curious about the various other equivalent systems like gevent and twisted async. but since this is the pypy channel i'm especially curious about the pypy angle here.
derpydoo has joined #pypy
jcea has quit [Ping timeout: 252 seconds]
derpydoo has quit [Quit: derpydoo]
otisolsen70 has joined #pypy
otisolsen70 has quit [Remote host closed the connection]
otisolsen70 has joined #pypy
<arigato>
hexology: it's mostly my position, but Python's async/await syntax at the core is a seriously broken design. Quite possibly some libraries built on top of it at still good
<arigato>
however, the pypy angle is to shrug and copy the implementation of CPython as closely as possible, and staying out of design decisions