1. 25 Jul, 2002 1 commit
  2. 24 Jul, 2002 3 commits
  3. 23 Jul, 2002 12 commits
  4. 22 Jul, 2002 10 commits
  5. 21 Jul, 2002 3 commits
    • Tim Peters's avatar
      New test "+sort", tacking 10 random floats on to the end of a sorted · 7ea39b13
      Tim Peters authored
      array.  Our samplesort special-cases the snot out of this, running about
      12x faster than *sort.  The experimental mergesort runs it about 8x
      faster than *sort without special-casing, but should really do better
      than that (when merging runs of different lengths, right now it only
      does something clever about finding where the second run begins in
      the first and where the first run ends in the second, and that's more
      of a temp-memory optimization).
      7ea39b13
    • Tim Peters's avatar
      Changed import from · 53d019cf
      Tim Peters authored
          from test.test_support import TestSkipped, run_unittest
      to
          from test_support import TestSkipped, run_unittest
      
      Otherwise, if the Japanese codecs aren't installed, regrtest doesn't
      believe the TestSkipped exception raised by this test matches the
      
          except (ImportError, test_support.TestSkipped), msg:
      
      it's looking for, and reports the skip as a crash failure instead of
      as a skipped test.
      
      I suppose this will make it harder to run this test outside of
      regrtest, but under the assumption only Barry does that, better to
      make it skip cleanly for everyone else.
      53d019cf
    • Kurt B. Kaiser's avatar
      Bug: clearing the shell undo list after a prompt was allowing files to be · 1bf4c2d2
      Kurt B. Kaiser authored
      opened on top of the shell instead of in a new window.
      1bf4c2d2
  6. 20 Jul, 2002 6 commits
  7. 19 Jul, 2002 5 commits
    • Barry Warsaw's avatar
      Shut the test up and add a missing import · d33d4740
      Barry Warsaw authored
      d33d4740
    • Barry Warsaw's avatar
      The email package's tests live much better in a subpackage · 190390b0
      Barry Warsaw authored
      (i.e. email.test), so move the guts of them here from Lib/test.  The
      latter directory will retain stubs to run the email.test tests using
      Python's standard regression test.
      
      test_email_torture.py is a torture tester which will not run under
      Python's test suite because I don't want to commit megs of data to
      that project (it will fail cleanly there).  When run under the mimelib
      project it'll stress test the package with megs of message samples
      collected from various locations in the wild.
      190390b0
    • Barry Warsaw's avatar
      The email package's tests live much better in a subpackage · 62903809
      Barry Warsaw authored
      (i.e. email.test), so move the guts of them here from Lib/test.  The
      latter directory will retain stubs to run the email.test tests using
      Python's standard regression test.
      
      test_email_torture.py is a torture tester which will not run under
      Python's test suite because I don't want to commit megs of data to
      that project (it will fail cleanly there).  When run under the mimelib
      project it'll stress test the package with megs of message samples
      collected from various locations in the wild.
      
      email/test/data is a copy of Lib/test/data.  The fate of the latter is
      still undecided.
      62903809
    • Barry Warsaw's avatar
      message_from_string(), message_from_file(): The consensus on the · d8e8e54c
      Barry Warsaw authored
      mimelib-devel list is that non-strict parsing should be the default.
      Make it so.
      d8e8e54c
    • Barry Warsaw's avatar
      Parser.__init__(): The consensus on the mimelib-devel list is that · bb26b453
      Barry Warsaw authored
      non-strict parsing should be the default.  Make it so.
      bb26b453