1. 08 Sep, 2014 8 commits
  2. 06 Sep, 2014 1 commit
  3. 05 Sep, 2014 9 commits
  4. 04 Sep, 2014 6 commits
  5. 03 Sep, 2014 3 commits
  6. 02 Sep, 2014 1 commit
  7. 30 Aug, 2014 1 commit
    • Kevin Modzelewski's avatar
      str.replace · 1b012805
      Kevin Modzelewski authored
      Also had to fix some bugs with codegen function types --
      not sure how those snuck through
      1b012805
  8. 29 Aug, 2014 10 commits
  9. 28 Aug, 2014 1 commit
    • Kevin Modzelewski's avatar
      Improve tuple unpacking behavior · b0e93d19
      Kevin Modzelewski authored
      - Use the right unpacking protocol (ie don't check __len__, just try to iterate)
      - Handle unpacking exceptions appropriately
      - Expand the targets of assigns correctly (think: f().x = 1)
      -- this was not just for tuples but came up here first; this also was broken:
      [0 for i in xrange(5)][0] = 1
      (silly but legal)
      b0e93d19