1. 11 Sep, 2001 11 commits
  2. 10 Sep, 2001 27 commits
  3. 09 Sep, 2001 2 commits
    • Guido van Rossum's avatar
      This time (I hope) I've fixed largefile · 810cc51d
      Guido van Rossum authored
      support on Linux (and Solaris, I expect) for real.
      The necessary symbols are defined once and for all,
      under the assumption that they won't harm elsewhere.
      810cc51d
    • Tim Peters's avatar
      Teach regrtest how to pass on doctest failure msgs. This is done via a · a0a62225
      Tim Peters authored
      horridly inefficient hack in regrtest's Compare class, but it's about as
      clean as can be:  regrtest has to set up the Compare instance before
      importing a test module, and by the time the module *is* imported it's too
      late to change that decision.  The good news is that the more tests we
      convert to unittest and doctest, the less the inefficiency here matters.
      Even now there are few tests with large expected-output files (the new
      cost here is a Python-level call per .write() when there's an expected-
      output file).
      a0a62225