1. 23 May, 2007 1 kayıt (commit)
  2. 02 May, 2007 1 kayıt (commit)
  3. 26 Nis, 2007 1 kayıt (commit)
  4. 20 Mar, 2007 1 kayıt (commit)
  5. 12 Mar, 2007 1 kayıt (commit)
  6. 07 Mar, 2007 1 kayıt (commit)
  7. 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
  8. 19 Şub, 2007 1 kayıt (commit)
  9. 12 Şub, 2007 1 kayıt (commit)
  10. 19 Ock, 2007 1 kayıt (commit)
  11. 22 Eki, 2006 1 kayıt (commit)
  12. 19 Eki, 2006 1 kayıt (commit)
  13. 02 Eki, 2006 1 kayıt (commit)
  14. 22 Eyl, 2006 2 kayıt (commit)
    • Neal Norwitz's avatar
      Mostly revert this file to the same version as before. Only force setting · 02743ca0
      Neal Norwitz yazdı
      of PY_FORMAT_SIZE_T to "l" for Mac OSX.  I don't know a better define
      to use.  This should get rid of the warnings on other platforms and Mac too.
      02743ca0
    • Neal Norwitz's avatar
      Fix %zd string formatting on Mac OS X so it prints negative numbers. · 4a8fbdb1
      Neal Norwitz yazdı
      In addition to testing positive numbers, verify negative numbers work in configure.
      In order to avoid compiler warnings on OS X 10.4, also change the order of the check
      for the format character to use (PY_FORMAT_SIZE_T) in the sprintf format
      for Py_ssize_t.  This patch changes PY_FORMAT_SIZE_T from "" to "l" if it wasn't
      defined at configure time.  Need to verify the buildbot results.
      
      Backport candidate (if everyone thinks this patch can't be improved).
      4a8fbdb1
  15. 06 Eyl, 2006 1 kayıt (commit)
  16. 21 Agu, 2006 1 kayıt (commit)
  17. 19 Agu, 2006 1 kayıt (commit)
  18. 18 Agu, 2006 2 kayıt (commit)
  19. 16 Agu, 2006 2 kayıt (commit)
  20. 14 Agu, 2006 1 kayıt (commit)
    • Marc-André Lemburg's avatar
      Slightly revised version of patch #1538956: · 040f76b7
      Marc-André Lemburg yazdı
      Replace UnicodeDecodeErrors raised during == and !=
      compares of Unicode and other objects with a new
      UnicodeWarning.
      
      All other comparisons continue to raise exceptions.
      Exceptions other than UnicodeDecodeErrors are also left
      untouched.
      040f76b7
  21. 12 Agu, 2006 1 kayıt (commit)
    • Neal Norwitz's avatar
      Patch #1538606, Patch to fix __index__() clipping. · 8a87f5d3
      Neal Norwitz yazdı
      I modified this patch some by fixing style, some error checking, and adding
      XXX comments.  This patch requires review and some changes are to be expected.
      I'm checking in now to get the greatest possible review and establish a
      baseline for moving forward.  I don't want this to hold up release if possible.
      8a87f5d3
  22. 02 Agu, 2006 2 kayıt (commit)
  23. 30 Tem, 2006 1 kayıt (commit)
  24. 10 Tem, 2006 2 kayıt (commit)
  25. 19 Haz, 2006 3 kayıt (commit)
  26. 14 Haz, 2006 1 kayıt (commit)
  27. 13 Haz, 2006 1 kayıt (commit)
    • Andrew MacIntyre's avatar
      Patch #1454481: Make thread stack size runtime tunable. · 9291332d
      Andrew MacIntyre yazdı
      Heavily revised, comprising revisions:
      46640 - original trunk revision (backed out in r46655)
      46647 - markup fix (backed out in r46655)
      46692:46918 merged from branch aimacintyre-sf1454481
      
      branch tested on buildbots (Windows buildbots had problems
      not related to these changes).
      9291332d
  28. 12 Haz, 2006 1 kayıt (commit)
  29. 10 Haz, 2006 1 kayıt (commit)
  30. 04 Haz, 2006 4 kayıt (commit)