Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | convert usage of fail* to assert* | Benjamin Peterson | 2009-06-30 | 1 | -1/+1 |
| | |||||
* | Re-enable testing of builtin open() in test_bufio in test_largefile | Antoine Pitrou | 2009-06-12 | 1 | -1/+4 |
| | |||||
* | Issue #6215: backport the 3.1 io lib | Antoine Pitrou | 2009-06-12 | 1 | -16/+27 |
| | |||||
* | Ensure that this test will pass even if another test left an unwritable TESTFN. | Neal Norwitz | 2007-10-06 | 1 | -5/+4 |
| | | | | Also use the safe unlink in test_support instead of rolling our own here. | ||||
* | Whitespace normalization. | Tim Peters | 2006-11-03 | 1 | -1/+1 |
| | |||||
* | Port test_bufio to unittest. | Walter Dörwald | 2006-10-28 | 1 | -55/+61 |
| | |||||
* | Complete the absolute import patch for the test suite. All relative | Barry Warsaw | 2002-07-30 | 1 | -1/+1 |
| | | | | | | | | 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. | ||||
* | a bold attempt to fix things broken by MAL's verify patch: import | Fredrik Lundh | 2001-01-17 | 1 | -1/+1 |
| | | | | 'verify' iff it's used by a test module... | ||||
* | Marc-Andre must not have run these tests -- they used verify() but | Guido van Rossum | 2001-01-17 | 1 | -1/+1 |
| | | | | | didn't import it. Also got rid of some inconsistent spaces inside parentheses in test_gzip.py. | ||||
* | This patch removes all uses of "assert" in the regression test suite | Marc-André Lemburg | 2001-01-17 | 1 | -1/+1 |
| | | | | | | | 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. | ||||
* | 18 isn't a prime (duh). | Tim Peters | 2001-01-08 | 1 | -1/+1 |
| | |||||
* | MS Win32 .readline() speedup, as discussed on Python-Dev. This is a tricky | Tim Peters | 2001-01-07 | 1 | -0/+60 |
variant that never needs to "search from the right". Also fixed unlikely memory leak in get_line, if string size overflows INTMAX. Also new std test test_bufio to make sure .readline() works. |