cfbolz changed the topic of #pypy to: #pypy PyPy, the flexible snake https://pypy.org | IRC logs: https://quodlibet.duckdns.org/irc/pypy/latest.log.html#irc-end and https://libera.irclog.whitequark.org/pypy | the pypy angle is to shrug and copy the implementation of CPython as closely as possible, and staying out of design decisions
itamarst has quit [Quit: Connection closed for inactivity]
itamarst has joined #pypy
pbsds3 has quit [Ping timeout: 260 seconds]
pbsds3 has joined #pypy
dmalcolm_ has quit [Remote host closed the connection]
dmalcolm__ has joined #pypy
<korvo> I've just finished rewriting (and debugging) my Brainfuck interpreter. It is still technically based on Brown's work, but no longer resembles it at all: https://github.com/rpypkgs/rpypkgs/blob/main/bf/bf.py
<korvo> I think I figured out how to apply the tagless-final style meaningfully. arigato was right about @specialize.import_from_mixin and monomorphization being a better call than trying to wedge everything into a single superclass.