Live data from Hacker News

Viewing profile — pjenvey

pjenvey

HN member
Joined
Thu, Aug 18, 2011, 6:34 PM UTC
HN karma
427
Public activity
15 items

About pjenvey

No profile information was provided.

Recent public activity

  1. 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.

  2. story
  3. comment
  4. comment
    Comment #11270690

    Come by the PyPy IRC channel and ask

  5. comment
    Comment #11261478

    pypy3 has always supported the u'' prefix despite it otherwise being limited to 3.2 support.

  6. story
  7. story
  8. story
  9. comment
    Comment #7418839

    Since this is pure Python performance you might want to give the different algorithms a try on PyPy

  10. comment
    Comment #6387357

    What's new: https://wiki.freebsd.org/WhatsNew/FreeBSD10

  11. 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…

  12. story
  13. comment
    Comment #5345815

    Use SQLAlchemy.

  14. comment
    Comment #3838507

    Source Maps will solve the line number mismatch problem: http://www.html5rocks.com/en/tutorials/developertools/source...

  15. 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)