summaryrefslogtreecommitdiffstats
path: root/Lib
Commit message (Collapse)AuthorAgeFilesLines
* New output file for strop testBarry Warsaw1997-01-061-0/+2
|
* Added a couple of strop.join() tests for large lists and long itemsBarry Warsaw1997-01-061-1/+20
| | | | within the lists (new output file to be checked in shortly).
* Fix the following bug:Guido van Rossum1997-01-032-8/+12
| | | | | | | | | | | - When dragging the mouse in either listbox, the *first* entry clicked on is selected rather than the last (but the last one is highlighted). This is done by changing the bindtags so that our binding is executed after the default binding (which sets the 'active' index to the last item selected), and using 'active' instead of 'anchor' as the index to ask for.
* This is a very inobstrusive test for the existance of the SGI cd moduleRoger E. Masse1997-01-031-0/+26
| | | | | and all it's attributes. More comprehensive examples can be found in Demo/cd and require that you have a CD and a CD ROM drive
* Output file for test_cd.pyRoger E. Masse1997-01-031-0/+1
|
* Some small changes.Guido van Rossum1997-01-031-5/+15
| | | | | | | | | | | | | | Raise ImportError instead of SystemExit when $DISPLAY is not set, so regrtest.py will do the right thing. Add a call to gl.clear() to clear the window before drawing in it. Add some verbose prints for completeness. Use gl.v2i() for the coordinates of one of the lines, for a little bit of variety. Reduce the time the window is displayed from 5 to 2 seconds.
* Output file for test_al.pyRoger E. Masse1997-01-031-0/+1
|
* This is a very inobstrusive test for the existance of the al module and allRoger E. Masse1997-01-031-0/+24
| | | | it's attributes. More comprehensive examples can be found in Demo/al
* Output of socket module test.Barry Warsaw1997-01-031-0/+18
|
* Test of the socket module. The following functions and methods areBarry Warsaw1997-01-031-0/+131
| | | | | | | | | | | | not currently tested (or even touched): # socket.fromfd() # sktobj.getsockopt() # sktobj.recvfrom() # sktobj.sendto() # sktobj.setblocking() # sktobj.setsockopt() # sktobj.shutdown()
* 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
|