1. 05 Kas, 2002 4 kayıt (commit)
  2. 21 Eki, 2002 2 kayıt (commit)
  3. 14 Eki, 2002 1 kayıt (commit)
  4. 10 Eki, 2002 1 kayıt (commit)
  5. 07 Eki, 2002 1 kayıt (commit)
  6. 01 Eki, 2002 1 kayıt (commit)
  7. 30 Eyl, 2002 1 kayıt (commit)
  8. 28 Eyl, 2002 2 kayıt (commit)
  9. 26 Eyl, 2002 2 kayıt (commit)
  10. 18 Eyl, 2002 1 kayıt (commit)
  11. 11 Eyl, 2002 1 kayıt (commit)
  12. 10 Eyl, 2002 2 kayıt (commit)
  13. 06 Eyl, 2002 3 kayıt (commit)
  14. 27 Agu, 2002 1 kayıt (commit)
  15. 20 Agu, 2002 2 kayıt (commit)
  16. 23 Tem, 2002 3 kayıt (commit)
  17. 21 Tem, 2002 1 kayıt (commit)
    • Tim Peters's avatar
      Changed import from · 53d019cf
      Tim Peters yazdı
          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
  18. 19 Tem, 2002 2 kayıt (commit)
    • Barry Warsaw's avatar
      The email package's tests live much better in a subpackage · 190390b0
      Barry Warsaw yazdı
      (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 yazdı
      (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