1. 01 Ock, 2009 1 kayıt (commit)
  2. 04 Eki, 2008 1 kayıt (commit)
  3. 11 Agu, 2008 1 kayıt (commit)
  4. 15 Tem, 2008 1 kayıt (commit)
  5. 28 Haz, 2008 1 kayıt (commit)
  6. 26 Haz, 2008 1 kayıt (commit)
  7. 09 Haz, 2008 1 kayıt (commit)
  8. 01 Haz, 2008 2 kayıt (commit)
  9. 26 May, 2008 1 kayıt (commit)
  10. 27 Nis, 2008 2 kayıt (commit)
  11. 25 Mar, 2008 2 kayıt (commit)
  12. 18 Mar, 2008 1 kayıt (commit)
  13. 24 Şub, 2008 1 kayıt (commit)
  14. 12 Şub, 2008 1 kayıt (commit)
  15. 09 Şub, 2008 1 kayıt (commit)
  16. 08 Şub, 2008 2 kayıt (commit)
  17. 07 Şub, 2008 1 kayıt (commit)
  18. 06 Şub, 2008 1 kayıt (commit)
  19. 25 Ock, 2008 1 kayıt (commit)
  20. 19 Ara, 2007 1 kayıt (commit)
  21. 18 Ara, 2007 1 kayıt (commit)
    • Raymond Hettinger's avatar
      Give meaning to the oparg for BUILD_MAP: estimated size of the dictionary. · fd7ed407
      Raymond Hettinger yazdı
      Allows dictionaries to be pre-sized (upto 255 elements) saving time lost
      to re-sizes with their attendant mallocs and re-insertions.
      
      Has zero effect on small dictionaries (5 elements or fewer), a slight
      benefit for dicts upto 22 elements (because they had to resize once
      anyway), and more benefit for dicts upto 255 elements (saving multiple
      resizes during the build-up and reducing the number of collisions on
      the first insertions).  Beyond 255 elements, there is no addional benefit.
      fd7ed407
  22. 29 Kas, 2007 2 kayıt (commit)
  23. 22 Kas, 2007 1 kayıt (commit)
  24. 09 Kas, 2007 1 kayıt (commit)
  25. 07 Kas, 2007 1 kayıt (commit)
  26. 10 Eki, 2007 1 kayıt (commit)
  27. 17 Eyl, 2007 1 kayıt (commit)
  28. 21 Tem, 2007 1 kayıt (commit)
  29. 23 May, 2007 2 kayıt (commit)
  30. 21 Mar, 2007 1 kayıt (commit)
  31. 20 Mar, 2007 1 kayıt (commit)
  32. 25 Şub, 2007 1 kayıt (commit)
    • Neal Norwitz's avatar
      Variation of patch # 1624059 to speed up checking if an object is a subclass · ee3a1b52
      Neal Norwitz yazdı
      of some of the common builtin types.
      
      Use a bit in tp_flags for each common builtin type.  Check the bit
      to determine if any instance is a subclass of these common types.
      The check avoids a function call and O(n) search of the base classes.
      The check is done in the various Py*_Check macros rather than calling
      PyType_IsSubtype().
      
      All the bits are set in tp_flags when the type is declared
      in the Objects/*object.c files because PyType_Ready() is not called
      for all the types.  Should PyType_Ready() be called for all types?
      If so and the change is made, the changes to the Objects/*object.c files
      can be reverted (remove setting the tp_flags).  Objects/typeobject.c
      would also have to be modified to add conditions
      for Py*_CheckExact() in addition to each the PyType_IsSubtype check.
      ee3a1b52
  33. 19 Şub, 2007 1 kayıt (commit)
  34. 07 Şub, 2007 1 kayıt (commit)