1. 20 Jul, 2005 3 commits
  2. 19 Jul, 2005 1 commit
  3. 18 Jul, 2005 4 commits
  4. 17 Jul, 2005 11 commits
  5. 15 Jul, 2005 2 commits
  6. 14 Jul, 2005 2 commits
  7. 12 Jul, 2005 6 commits
  8. 10 Jul, 2005 2 commits
    • Tim Peters's avatar
      SF bug 1185883: PyObject_Realloc can't safely take over a block currently · ecc6e6a5
      Tim Peters authored
      managed by C, because it's possible for the block to be smaller than the
      new requested size, and at the end of allocated VM.  Trying to copy over
      nbytes bytes to a Python small-object block can segfault then, and there's
      no portable way to avoid this (we would have to know how many bytes
      starting at p are addressable, and std C has no means to determine that).
      
      Bugfix candidate.  Should be backported to 2.4, but I'm out of time.
      ecc6e6a5
    • Tim Peters's avatar
      Whitespace normalization. · 7d66b00f
      Tim Peters authored
      7d66b00f
  9. 09 Jul, 2005 1 commit
  10. 08 Jul, 2005 5 commits
  11. 07 Jul, 2005 1 commit
  12. 06 Jul, 2005 1 commit
  13. 05 Jul, 2005 1 commit
    • Michael W. Hudson's avatar
      Fix bug · b8963814
      Michael W. Hudson authored
      [ 1232517 ] OverflowError in time.utime() causes strange traceback
      
      A needed error check was missing.
      
      (Actually, this error check may only have become necessary in fairly
      recent Python, not sure).
      
      Backport candidate.
      b8963814