PyPy3 (Python 3 support) 2.1 beta 1 releasedmorepypy.blogspot.com123 points·by pjenvey·13년 전·15 comments
pjenvey·9년 전·discuss3.6's order-preserving dict was first implemented by PyPy (so it's already had it for years, even in pypy2) and f-strings were back ported to pypy3 too.
pjenvey·10년 전·discusspypy3 has always supported the u'' prefix despite it otherwise being limited to 3.2 support.
pjenvey·12년 전·discussSince this is pure Python performance you might want to give the different algorithms a try on PyPy
pjenvey·13년 전·discussAll of the stackless/continuation related features included in Python 2 pypy should be supported on PyPy3 or it's a bug.Implementing Python 3.3's yield from in RPython should actually be fairly easy. One of the PyPy GSoC students may get around to doing it this summer
pjenvey·14년 전·discussSource Maps will solve the line number mismatch problem: http://www.html5rocks.com/en/tutorials/developertools/source...
pjenvey·15년 전·discussNot via ctypes, via CPyExt, a layer emulating the CPython C extension API (it actually implements a reference counting GC and everything)