Viewing profile — pjenvey
pjenvey
HN member- Joined
- Thu, Aug 18, 2011, 6:34 PM UTC
- HN karma
- 427
- Public activity
- 15 items
- HN profile
- View on Hacker News ↗
About pjenvey
No profile information was provided.
Recent public activity
-
comment
Comment #15411203
3.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.
- story
- comment
-
comment
Comment #11270690
Come by the PyPy IRC channel and ask
-
comment
Comment #11261478
pypy3 has always supported the u'' prefix despite it otherwise being limited to 3.2 support.
- story
- story
- story
-
comment
Comment #7418839
Since this is pure Python performance you might want to give the different algorithms a try on PyPy
-
comment
Comment #6387357
What's new: https://wiki.freebsd.org/WhatsNew/FreeBSD10
-
comment
Comment #6130690
All 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 actu…
- story
-
comment
Comment #5345815
Use SQLAlchemy.
-
comment
Comment #3838507
Source Maps will solve the line number mismatch problem: http://www.html5rocks.com/en/tutorials/developertools/source...
-
comment
Comment #2900463
Not via ctypes, via CPyExt, a layer emulating the CPython C extension API (it actually implements a reference counting GC and everything)