1. 29 Jan, 2017 10 commits
  2. 28 Jan, 2017 1 commit
    • INADA Naoki's avatar
      Issue #29383: reduce temporary interned unicode · 35a96a25
      INADA Naoki authored
      add_methods(), add_members(), and add_getset() used PyDict_SetItemString()
      to register descriptor to the type's dict.
      So descr_new() and PyDict_SetItemString() creates interned unicode from same
      C string.
      
      This patch takes interned unicode from descriptor, and use PyDict_SetItem()
      instead of PyDict_SetItemString().
      
      python_startup_no_site:
        default: Median +- std dev: 12.7 ms +- 0.1 ms
        patched: Median +- std dev: 12.5 ms +- 0.1 ms
      35a96a25
  3. 27 Jan, 2017 5 commits
  4. 26 Jan, 2017 2 commits
  5. 25 Jan, 2017 7 commits
  6. 24 Jan, 2017 15 commits