1. 28 Jul, 2015 3 commits
  2. 27 Jul, 2015 19 commits
  3. 26 Jul, 2015 4 commits
  4. 24 Jul, 2015 12 commits
  5. 23 Jul, 2015 2 commits
    • Kevin Modzelewski's avatar
      Allow passing NULL for empty kwargs · 7863807f
      Kevin Modzelewski authored
      This is a convention that cpython uses that is a good
      performance improvement -- unlike tuples, dicts are mutable,
      so we currently have to create a new dict for every call
      into a kwargs-taking function even if there are no keywords
      to pass.
      
      Have to modify the receiving ends to allow NULL kwargs.  This
      includes the ast interpreter (which I think will automatically get
      the bjit), the llvm irgenerator, and as many runtime functions as
      I can find.
      7863807f
    • Kevin Modzelewski's avatar
      cd09b0db