summaryrefslogtreecommitdiffstats
path: root/Lib
Commit message (Collapse)AuthorAgeFilesLines
* Fixed conversion between seconds and milliseconds.Guido van Rossum1996-12-122-2/+4
|
* A test of the struct moduleBarry Warsaw1996-12-122-0/+45
|
* Print final report, either all tests OK, or list of failed and missingBarry Warsaw1996-12-121-5/+19
| | | | tests.
* Print a more meaningful message when a test's output file wasn'tBarry Warsaw1996-12-121-1/+5
| | | | found.
* Make sure ok_builtin_modules, ok_dynamic_modules andGuido van Rossum1996-12-121-4/+4
| | | | builtin_module_names are always tuples.
* Fixed test_strftime to be silent when called from autotest.Guido van Rossum1996-12-122-9/+15
|
* Added test_strftime (Skip Montanaro).Guido van Rossum1996-12-123-0/+88
|
* Add mktime_tz() which turns a date_tz 10-tuple into a standard Unix timestamp.Guido van Rossum1996-12-121-0/+11
|
* Added a bunch of new winfo options; we should now be up to date withGuido van Rossum1996-12-122-4/+58
| | | | | | | Tk 4.2. The new winfo options supported are: mananger, pointerx, pointerxy, pointery, server, viewable, visualid, visualsavailable. Also fixed bugs in winfo_colormapfull() and winfo_containing().
* A test of the select module that is actually reproduceable!Barry Warsaw1996-12-113-4/+61
|
* Output of rgbimg module testBarry Warsaw1996-12-111-0/+2
|
* Added test of rgbimg moduleBarry Warsaw1996-12-111-0/+1
|
* minor formatting nitBarry Warsaw1996-12-111-1/+2
|
* Be more careful with the shuffling of stdout.Guido van Rossum1996-12-111-6/+7
|
* Output of the nis and pwd module testsBarry Warsaw1996-12-112-0/+2
|
* Test of the pwd moduleBarry Warsaw1996-12-111-0/+70
|
* Added test_pwdBarry Warsaw1996-12-111-0/+1
|
* Rewrite without using try-except to break out of two loops.Guido van Rossum1996-12-111-17/+18
|
* Just test one key/value pair for one NIS map. I.e. don't test themBarry Warsaw1996-12-111-11/+17
| | | | all because it can take a really long time.
* test of the nis moduleBarry Warsaw1996-12-111-0/+19
|
* added test_nisBarry Warsaw1996-12-111-0/+1
|
* Test output files in their new locationBarry Warsaw1996-12-1015-0/+183
|
* Directory for test output files: Output => outputBarry Warsaw1996-12-101-2/+2
|
* When run as a script, runs each test and sends results to stdoutBarry Warsaw1996-12-101-0/+17
| | | | | | | (i.e. this restores the old functionality). Note that if a test couldn't be imported, it is just ignored (and no warning is printed).
* New regression testing harness.Barry Warsaw1996-12-103-242/+130
| | | | | | | | | | | | | (testall.out): obsolete. see individual test output files in the Output directory. (testall.py): now contains only the list of all tests (autotest.py): The new testing harness. Supports -g option to generate output files instead of verifying; -w option to warn about non-tested optional modules; additional command line arguments to generate or test individual tests (useful for generating output file of new tests).
* A test of the `new' module. The new.code() test is fairly bogus sinceBarry Warsaw1996-12-101-0/+44
| | | | | | I'm really not sure what the proper inputs are. I do flex the function call though by passing in arguments of the proper type. I don't try to exec the code object that gets returned!
* Added test_new.Barry Warsaw1996-12-102-2/+7
|
* The usual; added several test modules, too.Guido van Rossum1996-12-1010-4/+278
|
* Add optional data argument to urlopen() and open_http(), to trigger POST.Guido van Rossum1996-12-101-9/+26
|
* In the HTTP reply header, be more accepting in the HTTP version.Guido van Rossum1996-12-101-2/+2
|
* Added a test script for dbmmodule.c and added it to testall.py andRoger E. Masse1996-12-103-2/+31
| | | | updated testall.out
* Added test_newBarry Warsaw1996-12-101-0/+1
|
* new test script for cryptmodule.pyRoger E. Masse1996-12-091-0/+6
|
* Test script/output for cryptmodule.c added to testall.py and testall.outRoger E. Masse1996-12-092-0/+3
|
* New test module for complex math moduleRoger E. Masse1996-12-091-0/+22
|
* Added test_cmath.py to test complex math moduleRoger E. Masse1996-12-092-1/+2
|
* (testall.py): Slightly improved test harness to make it easier to addBarry Warsaw1996-12-092-36/+17
| | | | | | simple tests. (testall.py, testall.out): Added MD5 testsuite
* Added test_stropBarry Warsaw1996-12-092-0/+5
|
* Added tests of all strop module functions, and touching of moduleBarry Warsaw1996-12-091-2/+35
| | | | variables
* Added test_array output line.Guido van Rossum1996-12-091-0/+1
|
* module to test the arraymodule created and added to testall.pyRoger E. Masse1996-12-092-1/+45
|
* Added test_timeBarry Warsaw1996-12-061-0/+4
|
* Added 'test_time'Barry Warsaw1996-12-061-0/+1
|
* test of time module. not terribly fancy, but it does touch everyBarry Warsaw1996-12-061-0/+36
| | | | | function and variable in the module, verifies a few return values and even tests a couple of known error conditions.
* Unpacker.get_buffer(): new method to access the internal buffer of dataBarry Warsaw1996-12-041-0/+3
|
* /usr/local/bin/python -> /usr/bin/env pythonGuido van Rossum1996-11-276-7/+11
|
* Added safeguard against failure in __del__.Guido van Rossum1996-11-271-0/+2
|
* Added ALL='all'.Guido van Rossum1996-11-202-0/+2
|
* Turn leading minus sign into underscore for image widget name -- theGuido van Rossum1996-11-202-6/+10
| | | | hyphen confused Tk into thinking the name was an option.
* Added support for timezone in date field. getdate_tz() andGuido van Rossum1996-11-201-6/+57
| | | | | parsedate_tz() return a 10-tuple, the last field is the tz offset in seconds (e.g. -18000 or -5 hours for EST).