summaryrefslogtreecommitdiffstats
path: root/Lib/test/output
Commit message (Collapse)AuthorAgeFilesLines
* Move the test for confirmation that all nodes have been freed into theFred Drake2000-10-091-9/+67
| | | | | | 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 Rossum2000-10-081-1/+1
|
* Correct output.Guido van Rossum2000-10-081-1/+1
|
* The test is good, but Jim forgot to check in the updated output.Fred Drake2000-10-071-0/+6
|
* Add .toxml test case, as proposed by Alex Martelli in bug report #116244.Martin v. Löwis2000-10-061-0/+1
|
* Add a test case for reporting the file name, and for reporting an errorMartin v. Löwis2000-10-061-1/+3
| | | | for incomplete input.
* test_linuxaudio:Jeremy Hylton2000-10-061-0/+6
| | | | | | | | | | | | | | | | | | | | | | 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
* Adding Jeremy's new test_import (SF patch 101709).Tim Peters2000-10-061-0/+1
|
* Add SAXReaderNotAvailable, and use it to distinguish between anMartin v. Löwis2000-10-061-1/+2
| | | | ImportError, and a missing driver.
* Add mimetools testcase.Martin v. Löwis2000-09-301-0/+5
|
* Added some tests for the truncate() method; one is commented out becauseFred Drake2000-09-281-0/+2
| | | | | | | | cStringIO does not get it right (reported as SF bug #115531). Added test for ValueError when write() is called on a closed StringIO object. Commented out because cStringIO does not get it right (reported as SF bug #115530).
* Regression test for ConfigParser module.Fred Drake2000-09-271-0/+51
|
* Updated hash values to match the new encoding (UTF-8) used in the test.Marc-André Lemburg2000-09-271-1/+1
|
* Test output data for the Unicode database test suite.Marc-André Lemburg2000-09-261-1/+4
|
* Added EntityResolver and DTDHandler (patch 101631) with test cases.Lars Gustäbel2000-09-241-1/+3
|
* Added test cases for the InputSource class.Lars Gustäbel2000-09-241-1/+4
|
* Added test cases for the Attributes interface.Lars Gustäbel2000-09-241-1/+9
|
* Added first start on SAX 2.0 tests.Lars Gustäbel2000-09-241-0/+12
|
* Revise the test case for pyexpat to avoid using asserts. Conform betterFred Drake2000-09-211-0/+4
| | | | to the Python style guide, and remove unneeded imports.
* Fix test errors.Paul Prescod2000-09-191-2/+0
|
* New test cases for the StringIO moduleMartin v. Löwis2000-09-191-0/+9
|
* Don't print specific Node instances unless running verbosely.Martin v. Löwis2000-09-191-2/+2
| | | | Closes Bug #114775.
* Test output that goes with updated test_minidom.Paul Prescod2000-09-181-0/+44
|
* fix bug #110661 (PR#356) -- accept either & or ; as separator for CGIJeremy Hylton2000-09-151-0/+5
| | | | | | query string also some doc string reformatting and use of string methods instead of older string.splitfields
* Fix Bug #114293:Jeremy Hylton2000-09-152-0/+16
| | | | | | | | | | | Strings are unpickled by calling eval on the string's repr. This change makes pickle work like cPickle; it checks if the pickled string is safe to eval and raises ValueError if it is not. test suite modifications: Verify that pickle catches a variety of insecure string pickles Make test_pickle and test_cpickle use exactly the same test suite Add test for pickling recursive object
* Add test cases to make sure we get the right SyntaxError message forFred Drake2000-09-081-0/+10
| | | | various illegal uses of "continue".
* test_mmap wrote null bytes into its expected-output file; this caused me toTim Peters2000-09-041-0/+0
| | | | | | | | | | | waste an hour tracking down an illusion; repaired it; writing/reading non- printable characters (except \t\r\n) into/outof text-mode files ain't defined x-platform, and at least some Windows text editors do surprising things in their presence. Also added a by-hand "build humber" to the Windows build, in an approximation of Python's inexplicable BUILD-number Unix scheme. I'll try to remember to increment it each time I make a Windows installer available. It's starting at 2, cuz I've put 2 installers out so far (both with BUILD #0).
* -- tightened up parsing of octal numbersFredrik Lundh2000-09-021-1/+0
| | | | | -- improved the SRE test harness: don't use asserts, test a few more things (including more boundary conditions)
* Applying patch #100994 to allow JPython to use more of the standardBarry Warsaw2000-09-011-5/+5
| | | | | | | | | | | | | Python test suite. Specifically, - import time instead of strop in test_b1 - test for ClassType of exceptions using isinstance instead of equality in test_exceptions - remove __builtins__ from dir() output in test_pkg test_pkg output needs to be regenerated.
* Test case to exercise fix for error propogation bug in dictionarys.Fred Drake2000-08-311-1/+4
|
* fixes bug #111951Jeremy Hylton2000-08-311-0/+1
| | | | | | applies patch #101369 by Moshe Zadke use explicit list of always safe characters instead of string.letters add test case
* Expand the test suite to test both the GNU gettext and translationBarry Warsaw2000-08-301-5/+26
| | | | class-based APIs.
* Added tests of "print >> None"Barry Warsaw2000-08-291-0/+1
|
* Added os.popen2() and os.popen3() for non-Windows platforms.Fred Drake2000-08-281-0/+5
|
* Tim Peters:Moshe Zadka2000-08-261-26/+0
| | | | | Again due to the duplicate copies of test_support, the checked-in "expected output" file actually contains verbose-mode output.
* Update the parser module to support augmented assignment.Fred Drake2000-08-251-21/+38
| | | | Add some test cases.
* Output of the new testMarc-André Lemburg2000-08-251-0/+1
|
* updated test outputBarry Warsaw2000-08-251-3/+24
|
* output from test_gettext.py test suiteBarry Warsaw2000-08-251-0/+4
|
* Test suite for poll() interface (SF patch #100852)Andrew M. Kuchling2000-08-251-0/+43
|
* Support for augmented assignment in the UserList, UserDict, UserString andThomas Wouters2000-08-241-0/+48
| | | | | | rfc822 (Addresslist) modules. Also a preliminary testcase for augmented assignment, which should actually be merged with the test_class testcase I added last week.
* Updated test suite: test repr() and str() of cookies, and test metadataAndrew M. Kuchling2000-08-241-0/+5
| | | | fields with quoted values (as in Path="/acme")
* Charles G. Waldman <cgq@fnal.gov>:Fred Drake2000-08-241-1/+1
| | | | | | | Update the test suite for the changes introduced by the EXTENDED_ARG opcode. This closes the regression test changes of SourceForge patch #100893.
* test case output for dospath regr testSkip Montanaro2000-08-231-0/+2
|
* require list comprehensions to start with a for clauseSkip Montanaro2000-08-221-0/+1
|
* Don't reference a module named test.test_support. Always use plainGuido van Rossum2000-08-211-6/+0
| | | | test_support. Also fixed the expected output.
* Add a minimal test suite for the parser module.Fred Drake2000-08-211-0/+36
|
* PEP 214, Extended print Statement, has been accepted by the BDFL.Barry Warsaw2000-08-211-0/+4
| | | | Additional test cases for the extended print form.
* Remove the winreg module from the project. I don't believe anyTim Peters2000-08-211-77/+0
| | | | | | | docs changes are needed (only reference to winreg I could find was in libwinreg.tex, which is documenting _winreg, and merely mentions that a higher-level winreg module *may* appear someday; that's still true).
* David Goodger's new getopt test module (thanks, David!).Tim Peters2000-08-201-0/+7
| | | | | https://sourceforge.net/patch/?func=detailpatch&patch_id=101110&group_id=5470 Accepted as-is, except for purging an "import *".