1. 20 Jul, 2005 2 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 · 0cba1bd5
      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.
      0cba1bd5
    • Tim Peters's avatar
      Whitespace normalization. · 6a223d84
      Tim Peters authored
      6a223d84
  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 2 commits
    • Michael W. Hudson's avatar
      Fix bug · 828f710f
      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.
      828f710f
    • Jack Jansen's avatar
      Allow for (optional) const declaration. · 6258e236
      Jack Jansen authored
      6258e236