Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Untabified -- to satisfy the tab nanny. | Guido van Rossum | 1998-06-09 | 1 | -44/+44 |
| | |||||
* | Add Tim's worst case scenario. | Guido van Rossum | 1998-05-26 | 1 | -6/+11 |
| | | | | Revert to using whrandom so it will work with older versions of Python. | ||||
* | Added some tests to make sure that long->int conversions near | Guido van Rossum | 1998-05-26 | 1 | -0/+12 |
| | | | | sys.maxint and near -sys.maxint-1 work correctly. | ||||
* | Change the last 4-space indent into a 1-tab indent. | Guido van Rossum | 1998-05-22 | 1 | -1/+1 |
| | |||||
* | Use random instead of whrandom. | Guido van Rossum | 1998-05-20 | 2 | -12/+12 |
| | |||||
* | Test that "import sys.imp" fails as it should. | Guido van Rossum | 1998-05-19 | 1 | -1/+12 |
| | |||||
* | Reduce memory requirements. | Guido van Rossum | 1998-05-12 | 1 | -1/+4 |
| | |||||
* | Add a few doc strings. | Guido van Rossum | 1998-05-10 | 1 | -6/+31 |
| | |||||
* | benchmark for list.sort() | Guido van Rossum | 1998-05-10 | 1 | -0/+109 |
| | |||||
* | Use hex() when outputting the various checksums so the test output is the | Guido van Rossum | 1998-04-24 | 2 | -5/+5 |
| | | | | same on 32 and 64 bit machines. | ||||
* | New test sample -- "Nobody expects the Spanish Inquisition!" | Guido van Rossum | 1998-04-23 | 1 | -0/+0 |
| | |||||
* | Move unified findfile() into test_support.py | Guido van Rossum | 1998-04-23 | 5 | -50/+16 |
| | |||||
* | Add test for MimeWriter module | Guido van Rossum | 1998-04-23 | 2 | -0/+280 |
| | |||||
* | Add writelines() method to Compare class. | Guido van Rossum | 1998-04-23 | 1 | -0/+3 |
| | |||||
* | AMK's latest | Guido van Rossum | 1998-04-03 | 2 | -25/+100 |
| | |||||
* | Track changes in tokenize.py | Guido van Rossum | 1998-04-03 | 1 | -30/+30 |
| | |||||
* | Mass check-in after untabifying all files that need it. | Guido van Rossum | 1998-03-26 | 36 | -930/+930 |
| | |||||
* | Add test for core dump -- make sure it doesn't come back! | Guido van Rossum | 1998-02-25 | 1 | -0/+5 |
| | |||||
* | Adding output of test_xmllib.py | Guido van Rossum | 1998-02-13 | 1 | -0/+1 |
| | |||||
* | Make this test work when imported from the interpreter instead of run | Guido van Rossum | 1998-01-29 | 1 | -1/+6 |
| | | | | from regrtest.py (it still works there too, of course). | ||||
* | New version of xmllib from Sjoerd. | Guido van Rossum | 1998-01-29 | 1 | -0/+25 |
| | | | | | | | | | | | | | The main incompatibility is that the error reporting method is now called as parser.syntax_error(msg) instead of parser.syntax_error(lineno, msg) This new version also has some code to deal with the <?xml?> and <!DOCTYPE> tags at the start of an XML document. The documentation has been updated, and a small test module has been created. | ||||
* | Added tests for qualified sub and split | Guido van Rossum | 1998-01-14 | 1 | -0/+15 |
| | |||||
* | Add tests for re.L(OCALE). | Guido van Rossum | 1997-12-30 | 1 | -1/+7 |
| | |||||
* | Make this test succeed even when using "import test.test_zlib". | Guido van Rossum | 1997-12-18 | 1 | -2/+5 |
| | |||||
* | Move %x test to nonstandard section because it appears to be locale specific. | Guido van Rossum | 1997-12-15 | 1 | -2/+3 |
| | |||||
* | Believe it or not, some people have an empty group database. | Guido van Rossum | 1997-12-15 | 1 | -7/+10 |
| | | | | Prevent the test from failing there. | ||||
* | Use long() instead of int() to compare mktime(localtime(t) with t... | Guido van Rossum | 1997-12-08 | 1 | -1/+1 |
| | |||||
* | New re version from AMK | Guido van Rossum | 1997-12-08 | 2 | -19/+108 |
| | |||||
* | Support for netbsd1 and freebsd3, after suggestions by Anders Andersen | Guido van Rossum | 1997-12-02 | 1 | -2/+7 |
| | | | | and Jacques Vidrine. | ||||
* | Added strop.split tests when sep is None. | Barry Warsaw | 1997-12-02 | 1 | -0/+6 |
| | |||||
* | Added tests of strop.replace() | Barry Warsaw | 1997-11-29 | 1 | -0/+9 |
| | |||||
* | Use fuzzy comparison from test_support to compare outcome of | Guido van Rossum | 1997-11-24 | 1 | -1/+4 |
| | | | | pow(x,y,z) to pow(x,y)%z. | ||||
* | os2 patch by Jeff Rush | Guido van Rossum | 1997-11-22 | 2 | -4/+3 |
| | |||||
* | Separate out a function pystones(loops=LOOPS) which runs the benchmark | Guido van Rossum | 1997-11-06 | 1 | -8/+12 |
| | | | | | and returns a (benchtime, stones) tuple. The main() function now calls this and prints the report. Fred Drake's code. | ||||
* | Add __init__.py to test package. | Guido van Rossum | 1997-11-06 | 1 | -0/+1 |
| | |||||
* | Add empty __init__.py files to the test packages so the new policy | Guido van Rossum | 1997-10-31 | 1 | -1/+4 |
| | | | | will recognize them. | ||||
* | Tests for tokenize.py (Ka-Ping Yee) | Guido van Rossum | 1997-10-27 | 3 | -0/+775 |
| | |||||
* | Catch KeyboardInterrupt separately and propagate it, instead of | Guido van Rossum | 1997-10-20 | 1 | -1/+4 |
| | | | | | | reporting a "crash". Use sys.exc_info() instead of sys.exc_type and sys.exc_value. | ||||
* | Added separate tests for {}.get(). | Guido van Rossum | 1997-10-20 | 1 | -0/+3 |
| | |||||
* | Added tests of dict.get() | Barry Warsaw | 1997-10-20 | 1 | -0/+6 |
| | |||||
* | Change test for re.sub() involving g<...> to use a multi-character | Guido van Rossum | 1997-10-08 | 1 | -1/+1 |
| | | | | | identifier. The previous re.py had a bug that wouldn't show up with single-char identifier... | ||||
* | Use `...` around binary strings. | Guido van Rossum | 1997-10-07 | 1 | -1/+1 |
| | |||||
* | Fix path search for test data file so it works under more circumstances. | Guido van Rossum | 1997-10-01 | 1 | -1/+6 |
| | |||||
* | There was actually a test that ensured that raising an exception A | Guido van Rossum | 1997-10-01 | 1 | -3/+2 |
| | | | | | | | with an instance of a derived class B would really raise an A, not a B. Since Barry fixed this anomalous behaviour, I though I might as well fix the test! (Hmm, Barry, did you not run the tests or did you miss that test_opcodes failed?) | ||||
* | Fixed test for socket.error to work when it's a class exception. | Guido van Rossum | 1997-10-01 | 1 | -1/+2 |
| | |||||
* | Added test for __all__. | Guido van Rossum | 1997-09-08 | 2 | -0/+22 |
| | |||||
* | Look for uuencoded test files in the directory containing this module, too. | Guido van Rossum | 1997-09-07 | 1 | -2/+6 |
| | | | | | (This is necessary because when imported as test.test_rgbimg, the test directory is not on sys.path.) | ||||
* | Look for uuencoded test files in the directory containing this module, too. | Guido van Rossum | 1997-09-07 | 1 | -1/+2 |
| | | | | | (This is necessary because when imported as test.test_rgbimg, the test directory is not on sys.path.) | ||||
* | Pass optional arguments (globals(), locals(), []) to __import__() so | Guido van Rossum | 1997-09-07 | 1 | -1/+1 |
| | | | | | | | it will run as package test, e.g. this will run the test suite: import test.regrtest test.regrtest.main() | ||||
* | Fix details in the test: | Guido van Rossum | 1997-09-07 | 1 | -3/+13 |
| | | | | | | - traceback should go to stdout! - don't import ni, import t1! - nicer support for command line options, only if run as __main__ |