1. 11 May, 2007 1 kayıt (commit)
  2. 04 Nis, 2007 1 kayıt (commit)
  3. 13 Ock, 2007 1 kayıt (commit)
  4. 26 Mar, 2006 1 kayıt (commit)
  5. 16 Mar, 2006 3 kayıt (commit)
  6. 18 Şub, 2006 1 kayıt (commit)
    • Tim Peters's avatar
      Suppress new deprecation warnings when running the · e2c9a6ce
      Tim Peters yazdı
      test suite.
      
      For urllib2, move the import of gopherlib into the
      only function that uses it:  users (including the
      test suite) certainly shouldn't see a deprecation
      warning just because they import urllib2!  If they
      actually use gopher_open(), fine, _then_ they should
      see a deprecation warning.
      e2c9a6ce
  7. 05 Ara, 2004 1 kayıt (commit)
  8. 06 Kas, 2004 1 kayıt (commit)
  9. 02 Agu, 2004 1 kayıt (commit)
  10. 01 Tem, 2004 1 kayıt (commit)
  11. 13 Haz, 2004 1 kayıt (commit)
  12. 16 Kas, 2003 1 kayıt (commit)
    • Raymond Hettinger's avatar
      * Migrate set() and frozenset() from the sandbox. · a690a996
      Raymond Hettinger yazdı
      * Install the unittests, docs, newsitem, include file, and makefile update.
      * Exercise the new functions whereever sets.py was being used.
      
      Includes the docs for libfuncs.tex.  Separate docs for the types are
      forthcoming.
      a690a996
  13. 08 Kas, 2003 1 kayıt (commit)
  14. 16 Eyl, 2003 1 kayıt (commit)
  15. 01 Tem, 2003 1 kayıt (commit)
  16. 10 May, 2003 1 kayıt (commit)
  17. 02 May, 2003 2 kayıt (commit)
  18. 01 May, 2003 1 kayıt (commit)
  19. 15 Nis, 2003 1 kayıt (commit)
    • Walter Dörwald's avatar
      Port test_pwd.py to PyUnit. Check that getpwall() and · b1ded1e5
      Walter Dörwald yazdı
      getpwnam()/getpwuid() return consistent data.
      
      Change test_grp to check that getgrall() and
      getgrnam()/getgrgid() return consistent data.
      Add error checks similar to test_pwd.py.
      
      Port test___all__.py to PyUnit.
      
      From SF patch #662807.
      b1ded1e5
  20. 09 Eki, 2002 1 kayıt (commit)
    • Guido van Rossum's avatar
      Add special consideration for rlcompleter. As a side effect of · 06e2a5e0
      Guido van Rossum yazdı
      initializing GNU readline, setlocale(LC_CTYPE, "") is called, which
      changes the <ctype.h> macros to use the "default" locale (which isn't
      the *initial* locale -- the initial locale is the "C" locale in which
      only ASCII characters are printable).  When the default locale is e.g.
      Latin-1, the repr() of string objects can include 8-bit characters
      with the high bit set; I believe this is due to the recent
      PRINT_MULTIBYTE_STRING changes to stringobject.c.  This in turn screws
      up test_pyexpat and test_rotor, which depend on the repr() of 8-bit
      strings with high bit characters.
      
      The solution (for now) is to force the LC_CTYPE locale to "C" after
      importing rlcompleter.  This is the locale required by the test suite
      anyway.
      06e2a5e0
  21. 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
  22. 16 Nis, 2002 2 kayıt (commit)
  23. 15 Nis, 2002 1 kayıt (commit)
  24. 11 Nis, 2002 1 kayıt (commit)
  25. 07 Ara, 2001 1 kayıt (commit)
  26. 02 Kas, 2001 1 kayıt (commit)
  27. 04 Eyl, 2001 1 kayıt (commit)
  28. 09 Agu, 2001 1 kayıt (commit)
  29. 04 Agu, 2001 1 kayıt (commit)
  30. 01 Mar, 2001 1 kayıt (commit)
  31. 18 Şub, 2001 2 kayıt (commit)
  32. 15 Şub, 2001 1 kayıt (commit)
    • Skip Montanaro's avatar
      bunch more __all__ lists · 0de65807
      Skip Montanaro yazdı
      also modified check_all function to suppress all warnings since they aren't
      relevant to what this test is doing (allows quiet checking of regsub, for
      instance)
      0de65807
  33. 12 Şub, 2001 2 kayıt (commit)
    • Tim Peters's avatar
      test_pty started failing on Windows, but if and only if test___all__ was · 76c066b1
      Tim Peters yazdı
      run first.  Indirectly due to Skip adding check_all("pty") to test___all__:
      that caused the expected ImportError due to pty.py trying to import the
      non-existent FCNTL to get handled by test___all__, leaving a partial
      module object for pty in sys.modules, which caused the later import of
      pty via test_pty to succeed.  Then test_tpy died with an AttributeError,
      due to trying to access attributes of pty that didn't exist.  regrtest
      viewed that as a failure rather than the appropriate "test skipped".
      Fixed by deleting partial module objects in test___all__ when test___all__
      handles an ImportError.
      76c066b1
    • Skip Montanaro's avatar
      __all__ for several more modules · c62c81e0
      Skip Montanaro yazdı
      c62c81e0
  34. 07 Şub, 2001 1 kayıt (commit)