| Commit message (Expand) | Author | Age | Files | Lines |
* | Fix a minor typo in a docstring. | Brett Cannon | 2008-02-25 | 1 | -1/+1 |
|
|
* | Create a db_home directory with a unique name so multiple users can | Neal Norwitz | 2008-02-24 | 1 | -0/+9 |
|
|
* | Patch #2167 from calvin: Remove unused imports | Christian Heimes | 2008-02-23 | 1 | -1/+0 |
|
|
* | Let the O/S supply a port if none of the default ports can be used. | Neal Norwitz | 2007-10-14 | 1 | -4/+12 |
|
|
* | Port test_frozen to unittest. | Georg Brandl | 2007-08-24 | 1 | -0/+16 |
|
|
* | Remove test.test_support.guard_warnings_filter. | Brett Cannon | 2007-08-14 | 1 | -8/+0 |
|
|
* | Fix a minor typo in a docstring. | Brett Cannon | 2007-08-14 | 1 | -1/+1 |
|
|
* | Fix a bug in test.test_support.open_urlresource(). | Collin Winter | 2007-05-09 | 1 | -1/+1 |
|
|
* | Import and raise statement cleanup. | Collin Winter | 2007-04-25 | 1 | -17/+9 |
|
|
* | Change test_support.have_unicode to use True/False instead of 1/0. | Collin Winter | 2007-04-25 | 1 | -2/+2 |
|
|
* | Standardize on test.test_support.run_unittest() (as opposed to a mix of run_u... | Collin Winter | 2007-04-25 | 1 | -12/+11 |
|
|
* | Implement a contextmanager test.test_support.catch_warning that can | Walter Dörwald | 2007-04-03 | 1 | -0/+36 |
|
|
* | Fix a typo where the variable name was not updated. | Brett Cannon | 2007-03-13 | 1 | -1/+1 |
|
|
* | Add test.test_support.transient_internet . Returns a context manager that | Brett Cannon | 2007-03-13 | 1 | -2/+13 |
|
|
* | Introduce test.test_support.TransientResource. It's a context manager to | Brett Cannon | 2007-03-08 | 1 | -0/+25 |
|
|
* | Whitespace normalization. | Tim Peters | 2007-01-30 | 1 | -1/+1 |
|
|
* | Add EnvironmentVarGuard to test.test_support. Provides a context manager to | Brett Cannon | 2007-01-04 | 1 | -1/+33 |
|
|
* | Add test.test_support.guard_warnings_filter . This function returns a context | Brett Cannon | 2006-12-13 | 1 | -0/+12 |
|
|
* | Convert test_global, test_scope and test_grammar to unittest. | Georg Brandl | 2006-10-28 | 1 | -3/+3 |
|
|
* | Concatenation on a long string breaks (SF #1526585). | Armin Rigo | 2006-08-09 | 1 | -1/+20 |
|
|
* | Add new utility function, reap_children(), to test_support. This should | Neal Norwitz | 2006-06-29 | 1 | -0/+21 |
|
|
* | Whitespace normalization. | Tim Peters | 2006-06-19 | 1 | -1/+0 |
|
|
* | Prevent spurious leaks when running regrtest.py -R. There may be more | Neal Norwitz | 2006-06-18 | 1 | -0/+23 |
|
|
* | Fix the socket tests so they can be run concurrently. Backport candidate | Neal Norwitz | 2006-06-12 | 1 | -0/+18 |
|
|
* | Bug #1473625: stop cPickle making float dumps locale dependent in protocol 0. | Georg Brandl | 2006-04-30 | 1 | -0/+36 |
|
|
* | Do the small-memory run of big-meormy tests using a prime number, rather | Thomas Wouters | 2006-04-27 | 1 | -1/+1 |
|
|
* | Whitespace normalization. | Tim Peters | 2006-04-26 | 1 | -1/+1 |
|
|
* | The result of SF patch #1471578: big-memory tests for strings, lists and | Thomas Wouters | 2006-04-26 | 1 | -1/+69 |
|
|
* | Convenience function to remove a possibly non-existant file | Neal Norwitz | 2006-01-23 | 1 | -14/+10 |
|
|
* | Patch #1276356: Implement new resource "urlfetch" for regrtest. | Hye-Shik Chang | 2005-12-10 | 1 | -0/+14 |
|
|
* | Build with --disable-unicode again. Fixes #1158607. | Martin v. Löwis | 2005-03-08 | 1 | -1/+1 |
|
|
* | Whitespace normalization. | Tim Peters | 2004-01-18 | 1 | -1/+1 |
|
|
* | Typo repair; added some comments and horizontal whitespace. | Tim Peters | 2003-12-04 | 1 | -9/+10 |
|
|
* | Fix test_unicode_file errors on platforms without Unicode file support, | Mark Hammond | 2003-12-03 | 1 | -15/+21 |
|
|
* | Add TESTFN_UNICODE_UNENCODEABLE, a unicode filename that can not be | Mark Hammond | 2003-12-03 | 1 | -0/+21 |
|
|
* | Extend last change to cover TestSuites as well as TestCases. | Raymond Hettinger | 2003-07-16 | 1 | -1/+1 |
|
|
* | run_unittest() to support TestCase instances as well as classes. Helps with ... | Raymond Hettinger | 2003-07-16 | 1 | -1/+4 |
|
|
* | Include module name in doctest summary. | Raymond Hettinger | 2003-05-17 | 1 | -1/+1 |
|
|
* | Provide a clue that the doctests have run. | Raymond Hettinger | 2003-05-17 | 1 | -1/+3 |
|
|
* | Patch #734231: Update RiscOS support. In particular, correct | Martin v. Löwis | 2003-05-10 | 1 | -5/+5 |
|
|
* | 'forget' now also deletes any proper .pyo files. | Brett Cannon | 2003-05-04 | 1 | -1/+19 |
|
|
* | Combine the functionality of test_support.run_unittest() | Walter Dörwald | 2003-05-01 | 1 | -7/+8 |
|
|
* | Factor out common boilerplate for test_support | Raymond Hettinger | 2003-04-27 | 1 | -0/+6 |
|
|
* | if the test is run directly (__name__ == "__main__") don't actually require | Skip Montanaro | 2003-04-24 | 1 | -0/+4 |
|
|
* | Always initialize Py_FileSystemDefaultEncoding on Unix in Py_Initialize, | Martin v. Löwis | 2003-03-05 | 1 | -2/+1 |
|
|
* | test_support.requires(): Instead of raising TestSkipped, raise a new | Fred Drake | 2003-02-03 | 1 | -1/+9 |
|
|
* | Rearrange test_socket_ssl so that a skip is expected iff the network | Tim Peters | 2002-12-04 | 1 | -1/+4 |
|
|
* | Don't try to convert the test filename to Unicode with -U. | Martin v. Löwis | 2002-11-09 | 1 | -1/+6 |
|
|
* | Whitespace normalization. | Tim Peters | 2002-11-09 | 1 | -1/+1 |
|
|
* | Fix SF # 631066, running regrtest in user mode fails | Neal Norwitz | 2002-11-03 | 1 | -1/+21 |
|
|