1. 28 May, 2006 6 kayıt (commit)
  2. 27 May, 2006 32 kayıt (commit)
  3. 26 May, 2006 2 kayıt (commit)
    • Tim Peters's avatar
      Patch 1145039. · 7df5e7f4
      Tim Peters yazdı
      set_exc_info(), reset_exc_info():  By exploiting the
      likely (who knows?) invariant that when an exception's
      `type` is NULL, its `value` and `traceback` are also NULL,
      save some cycles in heavily-executed code.
      
      This is a "a kronar saved is a kronar earned" patch:  the
      speedup isn't reliably measurable, but it obviously does
      reduce the operation count in the normal (no exception
      raised) path through PyEval_EvalFrameEx().
      
      The tim-exc_sanity branch tries to push this harder, but
      is still blowing up (at least in part due to pre-existing
      subtle bugs that appear to have no other visible
      consequences!).
      
      Not a bugfix candidate.
      7df5e7f4
    • Andrew Dalke's avatar