Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Update test output. | Fred Drake | 2000-11-21 | 1 | -2/+18 |
| | |||||
* | testInsertBefore(): Rewritten to actually test insertBefore() somewhat. | Fred Drake | 2000-11-21 | 1 | -14/+103 |
| | | | | | | | | | | | | | | | | | | | | testAAA(), testAAB(): Added checks that the results are right. testTooManyDocumentElements(): Added code to actually test this. testCloneElementDeep() testCloneElementShallow(): Filled these in with test code. _testCloneElementCopiesAttributes(), _setupCloneElement(): Helper functions used with the other testCloneElement*() functions. testCloneElementShallowCopiesAttributes(): No longer a separate test; _setupCloneElement() uses _testCloneElementCopiesAttributes() to test that this is always done. testNormalize(): Added to check Node.normalize(). | ||||
* | Verify that str(a) and repr(a) don't blow up (part of SF patch 102068). | Tim Peters | 2000-11-14 | 1 | -0/+5 |
| | |||||
* | Added test cases to detect regression on SourceForge bug #121965. | Fred Drake | 2000-11-08 | 1 | -0/+14 |
| | |||||
* | Added 38,642 missing characters to the Unicode database (first-last | Fredrik Lundh | 2000-11-03 | 1 | -2/+2 |
| | | | | | | | ranges) -- but thanks to the 2.0 compression scheme, this doesn't add a single byte to the resulting binaries (!) Closes bug #117524 | ||||
* | track recent change to test_extcall.py | Jeremy Hylton | 2000-10-30 | 1 | -0/+4 |
| | |||||
* | Fix for SF bug #117241 | Jeremy Hylton | 2000-10-30 | 1 | -0/+18 |
| | | | | | | | | | When a method is called with no regular arguments and * args, defer the first arg is subclass check until after the * args have been expanded. N.B. The CALL_FUNCTION implementation is getting really hairy; should review it to see if it can be simplified. | ||||
* | -- properly reset groups in findall (bug #117612) | Fredrik Lundh | 2000-10-28 | 1 | -0/+3 |
| | | | | | | | | -- fixed negative lookbehind to work correctly at the beginning of the target string (bug #117242) -- improved syntax check; you can no longer refer to a group inside itself (bug #110866) | ||||
* | Ka-Ping Yee <ping@lfw.org>: | Fred Drake | 2000-10-24 | 1 | -6/+6 |
| | | | | | | Changes to error messages to increase consistency & clarity. This (mostly) closes SourceForge patch #101839. | ||||
* | Insert the current directory to the front of sys.path -- and remove it | Guido van Rossum | 2000-10-24 | 1 | -0/+5 |
| | | | | | | | | at the end. This fixes a problem where python Lib/test/test_import.py failed while "make test" succeeded. | ||||
* | Added a test case for the saxutils.prepare_input_source setSystemId bug. | Lars Gustäbel | 2000-10-24 | 2 | -1/+14 |
| | |||||
* | Updated output. | Lars Gustäbel | 2000-10-24 | 1 | -1/+6 |
| | |||||
* | Added some more tests here and there. | Lars Gustäbel | 2000-10-24 | 1 | -0/+84 |
| | |||||
* | Make reindent happy, but not in the way it planned! | Fred Drake | 2000-10-23 | 1 | -3/+3 |
| | |||||
* | Make reindent.py happy (convert everything to 4-space indents!). | Fred Drake | 2000-10-23 | 70 | -1261/+1229 |
| | |||||
* | Use 4-space indents. | Fred Drake | 2000-10-23 | 1 | -8/+8 |
| | |||||
* | Clean up the temporary file when done with it. | Fred Drake | 2000-10-23 | 1 | -0/+4 |
| | |||||
* | Make sure the temporary file is cleaned up even when we raise TestSkipped. | Fred Drake | 2000-10-23 | 1 | -21/+24 |
| | |||||
* | Added note saying to use test_support.TESTFN for a temporary filename, | Fred Drake | 2000-10-23 | 1 | -0/+5 |
| | | | | and be clear that you need to clean it up when done. | ||||
* | Added test for regression on SourceForge bug #117490. | Fred Drake | 2000-10-23 | 2 | -0/+30 |
| | |||||
* | Use test_support.TESTFN as the temporary filename. | Fred Drake | 2000-10-18 | 1 | -3/+3 |
| | | | | | | Fix a minor stylistic nit. This closes SourceForge bug #117032. | ||||
* | Test for math.* exceptional behavior only in verbose mode, so that the | Tim Peters | 2000-10-16 | 2 | -31/+40 |
| | | | | | oddball platforms (where, e.g., math.exp(+huge) still fails to raise OverflowError) don't fail the std test suite when run normally. | ||||
* | Updated test suite to latest pulldom changes. | Lars Gustäbel | 2000-10-13 | 2 | -19/+19 |
| | |||||
* | Make the regrtest.py -l (findleaks) option considerably less obnoxious. | Neil Schemenauer | 2000-10-13 | 1 | -4/+10 |
| | | | | | | First, only report garbage that the GC cannot free. Second, only report the number of objects found, not their repr(). People can dig deeper on their own if they find a leak. | ||||
* | cosmetic changes only: | Jeremy Hylton | 2000-10-12 | 1 | -118/+118 |
| | | | | use standard Python style for whitespace near = and () | ||||
* | Added a test for the StringIO write() error I just fixed. | Guido van Rossum | 2000-10-12 | 2 | -0/+9 |
| | |||||
* | Anonymous patch to add Darwin 1.2 to the list of BSDs. | Guido van Rossum | 2000-10-12 | 1 | -1/+1 |
| | | | | | | | Let's hope this is correct (I'm not sure why the sys.platform would be 'Darwin1.2' rather than 'darwin1', which seems to be the convention). Someone with Darwin please test this! | ||||
* | Added some single tuple/list unpacking for JPython regression testing. | Barry Warsaw | 2000-10-12 | 1 | -0/+12 |
| | |||||
* | A Mystery: I somehow managed to delete the last two lines of my test_math.py | Tim Peters | 2000-10-12 | 1 | -0/+2 |
| | | | | changes. Here restoring them. | ||||
* | Stop raising OverflowError on underflows reported by libm (errno==ERANGE and | Tim Peters | 2000-10-12 | 2 | -0/+30 |
| | | | | | | | | | libm result is 0). Cautiously add a few libm exception test cases: 1. That exp(-huge) returns 0 without exception. 2. That exp(+huge) triggers OverflowError. 3. That sqrt(-1) raises ValueError specifically (apparently under glibc linked with -lieee, it was raising OverflowError due to an accident of the way mathmodule.c's CHECK() macro happened to deal with Infs and NaNs under gcc). | ||||
* | Added additional test cases for pulldom modifications. | Lars Gustäbel | 2000-10-11 | 2 | -1/+77 |
| | |||||
* | Test the exception-raising for error cases in copy_reg. | Fred Drake | 2000-10-11 | 2 | -0/+44 |
| | |||||
* | Jack Jansen reported that the regression test failed on the Mac where | Guido van Rossum | 2000-10-11 | 1 | -3/+1 |
| | | | | | | | string.letters was much more than expected. Solution: explicit is better than implicit; don't rely on string.letters. | ||||
* | Added test cases for extended printing to an instance. This picked up | Barry Warsaw | 2000-10-11 | 1 | -1/+9 |
| | | | | a bug in JPython where the instance had to have a flush() method. | ||||
* | wave test output | Guido van Rossum | 2000-10-09 | 1 | -0/+1 |
| | |||||
* | Simple test suite for wave.py by Jean-Claude Rimbault (with some | Guido van Rossum | 2000-10-09 | 1 | -0/+34 |
| | | | | changes to avoid using assert). | ||||
* | Move the test for confirmation that all nodes have been freed into the | Fred Drake | 2000-10-09 | 2 | -33/+72 |
| | | | | | | driver code, so that each test gets this; it had been done inconsistently. Remove the lines that set the variables holding dom objects to None; not needed since the interpreter cleans up locals on function return. | ||||
* | Adapt test output to changed error message. | Guido van Rossum | 2000-10-08 | 1 | -1/+1 |
| | |||||
* | Correct output. | Guido van Rossum | 2000-10-08 | 1 | -1/+1 |
| | |||||
* | It seems our sound cards can't play mulaw data. Use native-format | Guido van Rossum | 2000-10-08 | 1 | -1/+12 |
| | | | | 16-bit signed data instead. Hope this works for you; it works for me. | ||||
* | Fixed too ambitious "nothing to repeat" check. Closes bug #114033. | Fredrik Lundh | 2000-10-07 | 1 | -0/+3 |
| | |||||
* | The test is good, but Jim forgot to check in the updated output. | Fred Drake | 2000-10-07 | 1 | -0/+6 |
| | |||||
* | SRE didn't handle character category followed by hyphen inside a | Fredrik Lundh | 2000-10-07 | 1 | -0/+2 |
| | | | | | character class. Fix provided by Andrew Kuchling. Closes bug #116251. | ||||
* | Updated test with a case which checks for the bug reported in | Marc-André Lemburg | 2000-10-07 | 1 | -0/+1 |
| | |||||
* | Add .toxml test case, as proposed by Alex Martelli in bug report #116244. | Martin v. Löwis | 2000-10-06 | 2 | -1/+7 |
| | |||||
* | Add a test case for reporting the file name, and for reporting an error | Martin v. Löwis | 2000-10-06 | 2 | -3/+36 |
| | | | | for incomplete input. | ||||
* | test_linuxaudio: | Jeremy Hylton | 2000-10-06 | 2 | -4/+65 |
| | | | | | | | | | | | | | | | | | | | | | | read the header from the .au file and do a sanity check pass only the data to the audio device call flush() so that program does not exit until playback is complete call all the other methods to verify that they work minimally call setparameters with a bunch of bugs arguments linuxaudiodev.c: use explicit O_WRONLY and O_RDONLY instead of 1 and 0 add a string name to each of the entries in audio_types[] add AFMT_A_LAW to the list of known formats add x_mode attribute to lad object, stores imode from open call test ioctl return value as == -1, not < 0 in read() method, resize string before return add getptr() method, that calls does ioctl on GETIPTR or GETOPTR depending on x_mode in setparameters() method, do better error checking and raise ValueErrors; also use ioctl calls recommended by Open Sound System Programmer's Guido (www.opensound.com) use PyModule_AddXXX to define names in module | ||||
* | Uncommented tests that failed for cStringIO, | Jim Fulton | 2000-10-06 | 1 | -17/+11 |
| | | | | Added missing clode to make the clode test test a close. ;) | ||||
* | Adding Jeremy's new test_import (SF patch 101709). | Tim Peters | 2000-10-06 | 2 | -0/+45 |
| | |||||
* | Add SAXReaderNotAvailable, and use it to distinguish between an | Martin v. Löwis | 2000-10-06 | 2 | -2/+19 |
| | | | | ImportError, and a missing driver. |