1. 28 Kas, 2001 18 kayıt (commit)
  2. 27 Kas, 2001 4 kayıt (commit)
    • Jeremy Hylton's avatar
      57911ae3
    • Tim Peters's avatar
      SF bug #483469: crash on unbounded recursion in __del__. · b13680bf
      Tim Peters yazdı
      PyEval_EvalCodeEx():  increment tstate->recursion_depth around the
      decref of the frame, because the C stack for this call is still in
      use and the decref can lead to __del__ methods getting called.
      
      While this gives tstate->recursion_depth a value proportional to the
      depth of the C stack (instead of a small constant no matter how
      deeply __del__s recurse), it's not enough to stop the reported crash
      when using the default recursion limit on Windows.
      
      Bugfix candidate.
      b13680bf
    • Tim Peters's avatar
      SF bug 485175: buffer overflow in traceback.c. · 6d20b43a
      Tim Peters yazdı
      Bugfix candidate.
      tb_displayline():  the sprintf format was choking off the file name, but
      used plain %s for the function name (which can be arbitrarily long).
      Limit both to 500 chars max.
      6d20b43a
    • Barry Warsaw's avatar
      test_formatdate(): Integrating Jack's 22b2 branch fix for Mac epoch: · e2748640
      Barry Warsaw yazdı
          More changes to the formatdate epoch test: the Mac epoch is in
          localtime, so east of GMT it falls in 1903:-( Changed the test to
          obtain the epoch in both local time and GMT, and do the right
          thing in the comparisons. As a sanity measure also check that
          day/month is Jan 1.
      e2748640
  3. 26 Kas, 2001 6 kayıt (commit)
  4. 25 Kas, 2001 3 kayıt (commit)
  5. 24 Kas, 2001 9 kayıt (commit)