1. 13 Aug, 2001 37 commits
  2. 12 Aug, 2001 3 commits
    • Tim Peters's avatar
      SF patch #445412 extract ndiff functionality to difflib, from · 5e824c37
      Tim Peters authored
      David Goodger.
      5e824c37
    • Jeremy Hylton's avatar
      Modify _Set to support iteration. · 39f77bc9
      Jeremy Hylton authored
      Otherwise printlist(surprise) will fail with a TypeError, because map
      is called with an argument that doesn't support iteration.
      39f77bc9
    • Jeremy Hylton's avatar
      Remove much dead code from ceval.c · 910d7d46
      Jeremy Hylton authored
      The descr changes moved the dispatch for calling objects from
      call_object() in ceval.c to PyObject_Call() in abstract.c.
      call_object() and the many functions it used in ceval.c were no longer
      used, but were not removed.
      
      Rename meth_call() as PyCFunction_Call() so that it can be called by
      the CALL_FUNCTION opcode in ceval.c.
      
      Also, fix error message that referred to PyEval_EvalCodeEx() by its
      old name eval_code2().  (I'll probably refer to it by its old name,
      too.)
      910d7d46