Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | 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__ | ||||
* | Added feeble test for reload() of packages and submodules. | Guido van Rossum | 1997-09-06 | 2 | -0/+5 |
| | |||||
* | Test set for package import. | Guido van Rossum | 1997-09-06 | 2 | -0/+212 |
| | |||||
* | Now produces some reassuring output. | Jeremy Hylton | 1997-09-04 | 1 | -0/+9 |
| | |||||
* | Many more tests, including tests of many optional arguments. | Jeremy Hylton | 1997-09-04 | 1 | -0/+47 |
| | |||||
* | The re test suite is very slow on slower hosts. | Guido van Rossum | 1997-09-04 | 1 | -0/+3 |
| | | | | To save time, only run the first and last 10 tests except in verbose mode. | ||||
* | Expanded r() function to handle class exceptions. | Barry Warsaw | 1997-08-29 | 1 | -1/+6 |
| | |||||
* | regression test for new sequence unpacking semantics | Barry Warsaw | 1997-08-25 | 1 | -0/+131 |
| | |||||
* | Output for sequence unpacking test | Barry Warsaw | 1997-08-25 | 1 | -0/+1 |
| | |||||
* | Added a few more tests of exception class raising | Barry Warsaw | 1997-08-22 | 1 | -0/+8 |
| | |||||
* | generated output for new tests | Barry Warsaw | 1997-08-22 | 1 | -0/+2 |
| | |||||
* | Added tests of the new builtin functions issubclass() and isinstance() | Barry Warsaw | 1997-08-22 | 1 | -0/+36 |
| | |||||
* | Change default verbosity so that there are only three levels left: -q, | Guido van Rossum | 1997-08-18 | 1 | -12/+15 |
| | | | | | | default and -v. In default mode, the name of each test is printed. -v is the same as the old -vv. -q is more quiet than the old default mode; that's fine I think. | ||||
* | Tweaks to cope with strftime returning 0 without error for %Z | Guido van Rossum | 1997-08-18 | 2 | -3/+6 |
| | |||||
* | Forgot to check in the fixed output for print | Guido van Rossum | 1997-08-18 | 1 | -1/+1 |
| | |||||
* | Oops. Of course, print b should also be print `b`. :-( | Guido van Rossum | 1997-08-18 | 1 | -1/+1 |
| | |||||
* | Use imp.find_module() as the most certain way to find the test data. | Guido van Rossum | 1997-08-15 | 1 | -1/+5 |
| | |||||
* | generated by regrtest.py -g | Jeremy Hylton | 1997-08-15 | 1 | -0/+1 |
| | |||||
* | test the zlib module | Jeremy Hylton | 1997-08-15 | 1 | -0/+94 |
| | | | | only produce output if somethign goes wrong | ||||
* | Added tests for \b, \B (AMK). | Guido van Rossum | 1997-08-15 | 1 | -0/+13 |
| | |||||
* | Moved some non-standard format characters out of the standard list. | Guido van Rossum | 1997-08-14 | 1 | -20/+22 |
| | | | | | | | Also moved %c and %Z out of there, even though they are standard, because these are locale dependent (and e.g. on Windows and Mac they return different strings). Finally, sorted the tables slightly different, to match my standard docs better (%a before %A). | ||||
* | set LOOPS to 10000 | Guido van Rossum | 1997-08-14 | 1 | -1/+1 |
| | |||||
* | Print `a` so encrypted text is shown in ascii, not binary. | Guido van Rossum | 1997-08-14 | 2 | -2/+2 |
| | |||||
* | Don't call sys.exit() all over the place -- simply return the exit | Guido van Rossum | 1997-08-14 | 1 | -4/+4 |
| | | | | | status from main() and call sys.exit(main()) in the startup stub at the end of the file. | ||||
* | 1.5a3 prerelease 1 from AMK | Guido van Rossum | 1997-08-13 | 3 | -4/+32 |
| | |||||
* | Fixes for the Mac. (Jack) | Guido van Rossum | 1997-08-12 | 1 | -3/+6 |
| | |||||
* | Add test for function comparisons | Guido van Rossum | 1997-08-05 | 2 | -0/+36 |
| | |||||
* | The reload(sys) test no longer works due to changes in the import | Guido van Rossum | 1997-08-02 | 1 | -4/+4 |
| | | | | semantics. | ||||
* | Nit: round delays to 0.1 second. | Guido van Rossum | 1997-07-18 | 1 | -2/+2 |
| | |||||
* | Some new tests by Jeffrey | Guido van Rossum | 1997-07-18 | 1 | -11/+72 |
| | |||||
* | Corresponding output. | Guido van Rossum | 1997-07-17 | 1 | -1/+11 |
| | |||||
* | Several additions from Jeffrey. | Guido van Rossum | 1997-07-17 | 1 | -5/+22 |
| | |||||
* | Added tests for sub, subn, and split. | Guido van Rossum | 1997-07-17 | 1 | -1/+47 |
| | |||||
* | Jeffrey's latest -- seems to solve most problems! | Guido van Rossum | 1997-07-17 | 3 | -156/+84 |
| | |||||
* | Add flush() method to fake file. | Guido van Rossum | 1997-07-17 | 1 | -0/+3 |
| | |||||
* | Catch all exceptions in test modules. | Guido van Rossum | 1997-07-16 | 1 | -0/+6 |
| |