1. 20 Jul, 2016 3 commits
  2. 19 Jul, 2016 4 commits
  3. 18 Jul, 2016 4 commits
  4. 15 Jul, 2016 4 commits
  5. 14 Jul, 2016 20 commits
  6. 13 Jul, 2016 4 commits
    • Boxiang Sun's avatar
      Add argument check for PyDict_Next · 2190118b
      Boxiang Sun authored
      In PyDict_Next, the 3rd argument `pkey` and 4th argument pvalue could be
      NULL. lxml will try to call it by PyDict_Next(kwdict, &pos, &key, 0).
      And a check like CPython did.
      2190118b
    • Boxiang Sun's avatar
      loose the dummy code object check · c7640dc8
      Boxiang Sun authored
      Cython try to store argcount, nlocals, and varnames through PyCode_New.
      But Pyston don't do anything with those or support getting them back
      out.
      c7640dc8
    • Kevin Modzelewski's avatar
      Optimize seq_iter protocol · f0a23389
      Kevin Modzelewski authored
      - special-case classes that we know have a fixed length (ex str)
      - do patchpoints for getIterHelper
      f0a23389
    • Kevin Modzelewski's avatar
      str does not have an __iter__ · 87edc344
      Kevin Modzelewski authored
      (it uses old-style iteration)
      And crazily, there is code that relies on this.
      
      I wouldn't usually want to give in to code relying on such an
      esoteric feature, but this seems to be a speedup as well (though
      that deserves looking into, itself).
      87edc344
  7. 12 Jul, 2016 1 commit