1. 30 Tem, 2002 1 kayıt (commit)
    • Barry Warsaw's avatar
      Complete the absolute import patch for the test suite. All relative · 408b6d34
      Barry Warsaw yazdı
      imports of test modules now import from the test package.  Other
      related oddities are also fixed (like DeprecationWarning filters that
      weren't specifying the full import part, etc.).  Also did a general
      code cleanup to remove all "from test.test_support import *"'s.  Other
      from...import *'s weren't changed.
      408b6d34
  2. 17 Ock, 2001 2 kayıt (commit)
    • Marc-André Lemburg's avatar
      This patch removes all uses of "assert" in the regression test suite · 3661908a
      Marc-André Lemburg yazdı
      and replaces them with a new API verify(). As a result the regression
      suite will also perform its tests in optimization mode.
      
      Written by Marc-Andre Lemburg. Copyright assigned to Guido van Rossum.
      3661908a
    • Guido van Rossum's avatar
      Fix a bizarre typo in the helper class ComparableException: the · 846d6dbb
      Guido van Rossum yazdı
      __getattr__() method, which clearly (like the other methods) was
      intended to pass the __getattr__() call on to the self.err object,
      mistakenly returned getattr(self, self.err) rather than
      getattr(self.err, attr).  Since self.err is not a string, this always
      raises a TypeError.  Apparently that doesn't bother for the one
      attribute for which __getattr__() is actually called ('__coerce__'),
      but it broke the rich comparisons stuff that I'm trying to get into
      shape, so I'm fixing this now.  (I could also simply remove the
      __getattr__() method, but fixing it seems more in the spirit of what
      the ComparableException class is trying to do.)
      846d6dbb
  3. 23 Eki, 2000 1 kayıt (commit)
  4. 15 Eyl, 2000 1 kayıt (commit)
  5. 25 Agu, 2000 1 kayıt (commit)
  6. 03 Agu, 2000 1 kayıt (commit)