1. 28 Nov, 2001 38 commits
  2. 27 Nov, 2001 2 commits
    • Jeremy Hylton's avatar
      Fix [ #484645 ] little bug in pycodegen.py · 6e1fb93d
      Jeremy Hylton authored
      6e1fb93d
    • Tim Peters's avatar
      SF bug #483469: crash on unbounded recursion in __del__. · cd127a37
      Tim Peters authored
      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.
      cd127a37