1. 06 Agu, 2002 1 kayıt (commit)
  2. 05 Agu, 2002 3 kayıt (commit)
  3. 04 Agu, 2002 1 kayıt (commit)
  4. 02 Agu, 2002 1 kayıt (commit)
  5. 01 Agu, 2002 3 kayıt (commit)
    • Guido van Rossum's avatar
      Backport: · 2bf28655
      Guido van Rossum yazdı
      Fix for SF bug 570678 (can't flush read-only file on Mac OS X).
      2bf28655
    • Guido van Rossum's avatar
      Backport: · 00fc1a4e
      Guido van Rossum yazdı
      Tim found that once test_longexp has run, test_sort takes very much
      longer to run than normal.  A profiler run showed that this was due to
      PyFrame_New() taking up an unreasonable amount of time.  A little
      thinking showed that this was due to the while loop clearing the space
      available for the stack.  The solution is to only clear the local
      variables (and cells and free variables), not the space available for
      the stack, since anything beyond the stack top is considered to be
      garbage anyway.  Also, use memset() instead of a while loop counting
      backwards.  This should be a time savings for normal code too!  (By a
      probably unmeasurable amount. :-)
      00fc1a4e
    • Guido van Rossum's avatar
      Backport: · f75ba0b6
      Guido van Rossum yazdı
      SF patch 588728 (Nathan Srebro).
      
      The __delete__ method wrapper for descriptors was not supported
      
      (I added a test, too.)
      f75ba0b6
  6. 31 Tem, 2002 1 kayıt (commit)
  7. 30 Tem, 2002 3 kayıt (commit)
  8. 29 Tem, 2002 1 kayıt (commit)
  9. 28 Tem, 2002 4 kayıt (commit)
  10. 26 Tem, 2002 2 kayıt (commit)
  11. 25 Tem, 2002 1 kayıt (commit)
  12. 23 Tem, 2002 1 kayıt (commit)
  13. 17 Tem, 2002 2 kayıt (commit)
  14. 16 Tem, 2002 3 kayıt (commit)
  15. 12 Tem, 2002 5 kayıt (commit)
  16. 11 Tem, 2002 4 kayıt (commit)
  17. 10 Tem, 2002 2 kayıt (commit)
  18. 09 Tem, 2002 1 kayıt (commit)
  19. 08 Tem, 2002 1 kayıt (commit)
    • Tim Peters's avatar
      SF bug 578752: COUNT_ALLOCS vs heap types · b1fb9abf
      Tim Peters yazdı
      Repair segfaults and infinite loops in COUNT_ALLOCS builds in the
      presence of new-style (heap-allocated) classes/types.
      
      Note:  test_gc fails in a COUNT_ALLOCS build now, because it expects
      a new-style class to get garbage collected.
      b1fb9abf