1. 26 Jan, 2018 1 commit
  2. 25 Jan, 2018 4 commits
  3. 24 Jan, 2018 3 commits
  4. 23 Jan, 2018 1 commit
  5. 22 Jan, 2018 1 commit
  6. 21 Jan, 2018 1 commit
  7. 20 Jan, 2018 5 commits
  8. 17 Jan, 2018 2 commits
  9. 16 Jan, 2018 5 commits
  10. 13 Jan, 2018 4 commits
  11. 12 Jan, 2018 4 commits
  12. 11 Jan, 2018 5 commits
  13. 10 Jan, 2018 3 commits
  14. 07 Jan, 2018 1 commit
    • Stefan Behnel's avatar
      Increase number of items for which list.extend([...]) is optimised.... · 5b6497c8
      Stefan Behnel authored
      Increase number of items for which list.extend([...]) is optimised. Benchmarking shows that append() is still faster for 8 items (on an empty list) than extend().
      This limit could be increased for larger lists (which grow by a larger amount), but if we have to settle on one value then 8 is good enough, as we can expect literal item lists to be rather short.
      5b6497c8