- 11 May, 2007 1 kayıt (commit)
-
-
Neal Norwitz yazdı
-
- 04 Nis, 2007 1 kayıt (commit)
-
-
Collin Winter yazdı
-
- 13 Ock, 2007 1 kayıt (commit)
-
-
Brett Cannon yazdı
-
- 26 Mar, 2006 1 kayıt (commit)
-
-
Neal Norwitz yazdı
-
- 16 Mar, 2006 3 kayıt (commit)
-
-
Neal Norwitz yazdı
-
Neal Norwitz yazdı
-
Neal Norwitz yazdı
The pre module has been gone for a while. Need to go through and find other modules that no longer exists, since errors are silently ignored.
-
- 18 Şub, 2006 1 kayıt (commit)
-
-
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.
-
- 05 Ara, 2004 1 kayıt (commit)
-
-
Raymond Hettinger yazdı
-
- 06 Kas, 2004 1 kayıt (commit)
-
-
Tim Peters yazdı
Harmless.
-
- 02 Agu, 2004 1 kayıt (commit)
-
-
Tim Peters yazdı
getting left beyind in sys.modules.
-
- 01 Tem, 2004 1 kayıt (commit)
-
-
Raymond Hettinger yazdı
-
- 13 Haz, 2004 1 kayıt (commit)
-
-
Raymond Hettinger yazdı
-
- 16 Kas, 2003 1 kayıt (commit)
-
-
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.
-
- 08 Kas, 2003 1 kayıt (commit)
-
-
Raymond Hettinger yazdı
-
- 16 Eyl, 2003 1 kayıt (commit)
-
-
Raymond Hettinger yazdı
-
- 01 Tem, 2003 1 kayıt (commit)
-
-
Raymond Hettinger yazdı
-
- 10 May, 2003 1 kayıt (commit)
-
-
Raymond Hettinger yazdı
-
- 02 May, 2003 2 kayıt (commit)
-
-
Raymond Hettinger yazdı
-
Raymond Hettinger yazdı
Improves clarity and brevity.
-
- 01 May, 2003 1 kayıt (commit)
-
-
Walter Dörwald yazdı
and test_support.run_classtests() into run_unittest() and use it wherever possible. Also don't use "from test.test_support import ...", but "from test import test_support" in a few spots. From SF patch #662807.
-
- 15 Nis, 2003 1 kayıt (commit)
-
-
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.
-
- 09 Eki, 2002 1 kayıt (commit)
-
-
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.
-
- 30 Tem, 2002 1 kayıt (commit)
-
-
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.
-
- 16 Nis, 2002 2 kayıt (commit)
-
-
Tim Peters yazdı
order in which the tests are normally run.
-
Tim Peters yazdı
to keep doing that in every test that wants to filter a warning.
-
- 15 Nis, 2002 1 kayıt (commit)
-
-
Tim Peters yazdı
resetwarnings() calls too.
-
- 11 Nis, 2002 1 kayıt (commit)
-
-
Tim Peters yazdı
-
- 07 Ara, 2001 1 kayıt (commit)
-
-
Tim Peters yazdı
Don't even try to import _socket when running under Jython.
-
- 02 Kas, 2001 1 kayıt (commit)
-
-
Andrew M. Kuchling yazdı
-
- 04 Eyl, 2001 1 kayıt (commit)
-
-
Guido van Rossum yazdı
the -Qwarnall option, so I've changed this to only filter out the one warning that's a problem in practice.
-
- 09 Agu, 2001 1 kayıt (commit)
-
-
Tim Peters yazdı
-
- 04 Agu, 2001 1 kayıt (commit)
-
-
Greg Ward yazdı
starting the test suite proper. If _socket fails to build, that will make this test fail with an ImportError -- handled by the test harness as "no such module _socket" -- instead of an AttributeError deep in CGIHTTPServer.
-
- 01 Mar, 2001 1 kayıt (commit)
-
-
Skip Montanaro yazdı
giving it a slight facelift
-
- 18 Şub, 2001 2 kayıt (commit)
-
-
Tim Peters yazdı
-
Skip Montanaro yazdı
-
- 15 Şub, 2001 1 kayıt (commit)
-
-
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)
-
- 12 Şub, 2001 2 kayıt (commit)
-
-
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.
-
Skip Montanaro yazdı
-
- 07 Şub, 2001 1 kayıt (commit)
-
-
Skip Montanaro yazdı
-