summaryrefslogtreecommitdiffstats
path: root/Lib
Commit message (Collapse)AuthorAgeFilesLines
* Updated to include the verbose flag from test_supportRoger E. Masse1997-01-031-152/+197
|
* Change the ``calcsize*3'' test to be portable to 64-bit machines.Guido van Rossum1997-01-031-3/+7
|
* Output for signal module testBarry Warsaw1997-01-031-0/+2
|
* Added f/d tests for specific byte orders.Guido van Rossum1997-01-031-9/+19
|
* Use the new struct module's ability to pack and unpack standardizedGuido van Rossum1997-01-021-77/+32
| | | | | | | | | | | | | data formats. The _xdr module is no longer used, since struct supports the required IEEE floats and doubles. (I have one doubt about not using _xdr. The struct module doesn't handle Inf, NaN and gradual underflow correctly. If the _xdr module does these things better, it may still have a (small) competitive advantage. On the other hand, since not all platforms support IEEE floating point, it's not clear that it would be a good idea to ever transfer Inf or NaNs. Gradual underflow can be fixed in the struct module.
* <rotorobj>.setkey() now requires exactly one argumentBarry Warsaw1997-01-021-1/+4
|
* Added characteristics of shttp, https, and snews.Guido van Rossum1997-01-021-3/+12
|
* Properly parenthesize a long Boolean combination. Formerly, you couldGuido van Rossum1997-01-021-1/+1
| | | | pass invalid seed values.
* (formatter.py): Add a flush() method to the writer interface. This reallyFred Drake1996-12-311-2/+2
| | | | | needs to be a standard part of the interface, so we'll have it in for the next release.
* Exercise the new feature set somewhat.Guido van Rossum1996-12-311-10/+73
| | | | Use TestFailed exception and verbose flag from test_support module.
* Rewrote _{read,write}_{short,long} to use the newly revamped structGuido van Rossum1996-12-311-37/+44
| | | | | | module. (Small problem: struct.pack() won't deal with the Python long ints returned by struct.unpack() for the 'L' format. Worked around that for now.)
* Added support for RFC 850 style dates, as used by some HTTP serversGuido van Rossum1996-12-271-0/+4
| | | | | | | | (such as Netscape-Commerce and CERN). An example of a RFC 850 date: 'Wednesday, 18-Dec-96 21:00:00 GMT' From: Chris Lawrence <quango@themall.net>
* Fix bogus implementation of Group.bind().Guido van Rossum1996-12-272-4/+12
| | | | Added unbind() to CanvasItem and Group classes.
* Added config(ure) method to Image class.Guido van Rossum1996-12-272-0/+20
| | | | (Fred Drake)
* Change the default values for IntVar and DoubleVar to numbers (theyGuido van Rossum1996-12-272-4/+4
| | | | were strings, accidentally).
* Crude but effective hack to clear the parser cache every so often.Guido van Rossum1996-12-271-0/+4
| | | | (Fred Drake.)
* Test output for the gl C extension module.Roger E. Masse1996-12-241-0/+1
|
* gl is a *huge* module. This is a very simple test that insures thatRoger E. Masse1996-12-241-0/+141
| | | | | | all the modules attributes are present and creates a small criss-cross window for 5 seconds (example from the documentation :-) A more comprehensive test would probably be useful... but maybe overkill.
* Output filesBarry Warsaw1996-12-236-0/+60
| | | | | | | | | test_rotor.py: New test of the rotor module. test_*: converted to the new test harness. GvR note! test_signal.py works interatively (i.e. when verbose=1) but does not work inside the test harness. It must be a timing issue, but I haven't figured it out yet.
* test_rotor.py: New test of the rotor module.Barry Warsaw1996-12-238-27/+89
| | | | | | | test_*: converted to the new test harness. GvR note! test_signal.py works interatively (i.e. when verbose=1) but does not work inside the test harness. It must be a timing issue, but I haven't figured it out yet.
* Very very small comment change.Roger E. Masse1996-12-201-1/+1
|
* Many scripts, but small changes. Update the way the scripts obtain theRoger E. Masse1996-12-209-53/+71
| | | | | | | | | | | | | | | | 'verbose' flag ala GvR updated test harness architecture. Old way: verbose = 0 if __name__ == '__main__': verbose = 1 New way: from test_support import verbose Some other small readablility and functionality updates.
* added test of the regex moduleBarry Warsaw1996-12-203-0/+92
| | | | | | | [NOTE: testall.py and autotest.py might could go away soon, I've played with Guido's new regrtest.py script and it seems to work well. I'll wait until Guido gives the word to completely switch over -- and change the Makefile too!]
* More and better comments.Roger E. Masse1996-12-201-4/+11
|
* Minor semantic cleanup.Roger E. Masse1996-12-201-3/+3
|
* Output for test script for the SGI imgfile module.Roger E. Masse1996-12-201-0/+1
|
* Test script for the SGI imgfile module.Roger E. Masse1996-12-202-0/+104
|
* 8 bit greyscale test file needed for testing imageop and imgfile.Roger E. Masse1996-12-201-0/+0
|
* Test program for the SGI imageop module.Roger E. Masse1996-12-202-0/+122
|
* test output for SGI imageop C module.Roger E. Masse1996-12-201-0/+1
|
* Two new files (to shut up regrtest).Guido van Rossum1996-12-202-0/+30
|
* Added example DL for SGI IRIX.Guido van Rossum1996-12-201-0/+2
|
* Added test for minmax.Guido van Rossum1996-12-201-0/+7
|
* New regression test harness. See usage message / doc string.Guido van Rossum1996-12-201-0/+170
|
* Import verbose flag from test_support instead of testing __name__.Guido van Rossum1996-12-201-5/+1
|
* Set test_support.verbose to 0, to signal tests only to generateGuido van Rossum1996-12-201-0/+2
| | | | portable output.
* Add verbose flag for regression test to clear.Guido van Rossum1996-12-201-0/+2
|
* Test of the operator moduleBarry Warsaw1996-12-183-0/+78
|
* Test script output for the UNIX group file access module (grp)Roger E. Masse1996-12-181-0/+1
|
* Test script for the UNIX group file access module (grp)Roger E. Masse1996-12-182-0/+25
|
* Different operation in verbose mode: show the supported nonstandardGuido van Rossum1996-12-181-2/+16
| | | | options. Also added two: %n and %t (newline and tab character).
* In lieu of harness rewrite, fixed problem with test_thread ImportErrorBarry Warsaw1996-12-181-17/+14
| | | | triggering a bogus TestFailed exception.
* Test output for the GNU dbm module (gdbm)Roger E. Masse1996-12-171-0/+1
|
* Test script for the GNU dbm module (gdbm)Roger E. Masse1996-12-172-0/+36
|
* Added the test output for fcntl.Roger E. Masse1996-12-171-0/+1
|
* Added a test script for the fcntl C module.Roger E. Masse1996-12-172-0/+32
|
* Output for _xdr module testBarry Warsaw1996-12-171-0/+1
|
* A test of the _xdrmodule (not the entire xdr.py module).Barry Warsaw1996-12-171-0/+24
|
* Added _xdrmodule testBarry Warsaw1996-12-171-0/+1
|
* (test_thread): output from thread testBarry Warsaw1996-12-161-0/+6
|