Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | New output file for strop test | Barry Warsaw | 1997-01-06 | 1 | -0/+2 |
| | |||||
* | Added a couple of strop.join() tests for large lists and long items | Barry Warsaw | 1997-01-06 | 1 | -1/+20 |
| | | | | within the lists (new output file to be checked in shortly). | ||||
* | Fix the following bug: | Guido van Rossum | 1997-01-03 | 2 | -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 module | Roger E. Masse | 1997-01-03 | 1 | -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.py | Roger E. Masse | 1997-01-03 | 1 | -0/+1 |
| | |||||
* | Some small changes. | Guido van Rossum | 1997-01-03 | 1 | -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.py | Roger E. Masse | 1997-01-03 | 1 | -0/+1 |
| | |||||
* | This is a very inobstrusive test for the existance of the al module and all | Roger E. Masse | 1997-01-03 | 1 | -0/+24 |
| | | | | it's attributes. More comprehensive examples can be found in Demo/al | ||||
* | Output of socket module test. | Barry Warsaw | 1997-01-03 | 1 | -0/+18 |
| | |||||
* | Test of the socket module. The following functions and methods are | Barry Warsaw | 1997-01-03 | 1 | -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_support | Roger E. Masse | 1997-01-03 | 1 | -152/+197 |
| | |||||
* | Change the ``calcsize*3'' test to be portable to 64-bit machines. | Guido van Rossum | 1997-01-03 | 1 | -3/+7 |
| | |||||
* | Output for signal module test | Barry Warsaw | 1997-01-03 | 1 | -0/+2 |
| | |||||
* | Added f/d tests for specific byte orders. | Guido van Rossum | 1997-01-03 | 1 | -9/+19 |
| | |||||
* | Use the new struct module's ability to pack and unpack standardized | Guido van Rossum | 1997-01-02 | 1 | -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 argument | Barry Warsaw | 1997-01-02 | 1 | -1/+4 |
| | |||||
* | Added characteristics of shttp, https, and snews. | Guido van Rossum | 1997-01-02 | 1 | -3/+12 |
| | |||||
* | Properly parenthesize a long Boolean combination. Formerly, you could | Guido van Rossum | 1997-01-02 | 1 | -1/+1 |
| | | | | pass invalid seed values. | ||||
* | (formatter.py): Add a flush() method to the writer interface. This really | Fred Drake | 1996-12-31 | 1 | -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 Rossum | 1996-12-31 | 1 | -10/+73 |
| | | | | Use TestFailed exception and verbose flag from test_support module. | ||||
* | Rewrote _{read,write}_{short,long} to use the newly revamped struct | Guido van Rossum | 1996-12-31 | 1 | -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 servers | Guido van Rossum | 1996-12-27 | 1 | -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 Rossum | 1996-12-27 | 2 | -4/+12 |
| | | | | Added unbind() to CanvasItem and Group classes. | ||||
* | Added config(ure) method to Image class. | Guido van Rossum | 1996-12-27 | 2 | -0/+20 |
| | | | | (Fred Drake) | ||||
* | Change the default values for IntVar and DoubleVar to numbers (they | Guido van Rossum | 1996-12-27 | 2 | -4/+4 |
| | | | | were strings, accidentally). | ||||
* | Crude but effective hack to clear the parser cache every so often. | Guido van Rossum | 1996-12-27 | 1 | -0/+4 |
| | | | | (Fred Drake.) | ||||
* | Test output for the gl C extension module. | Roger E. Masse | 1996-12-24 | 1 | -0/+1 |
| | |||||
* | gl is a *huge* module. This is a very simple test that insures that | Roger E. Masse | 1996-12-24 | 1 | -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 files | Barry Warsaw | 1996-12-23 | 6 | -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 Warsaw | 1996-12-23 | 8 | -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. Masse | 1996-12-20 | 1 | -1/+1 |
| | |||||
* | Many scripts, but small changes. Update the way the scripts obtain the | Roger E. Masse | 1996-12-20 | 9 | -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 module | Barry Warsaw | 1996-12-20 | 3 | -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. Masse | 1996-12-20 | 1 | -4/+11 |
| | |||||
* | Minor semantic cleanup. | Roger E. Masse | 1996-12-20 | 1 | -3/+3 |
| | |||||
* | Output for test script for the SGI imgfile module. | Roger E. Masse | 1996-12-20 | 1 | -0/+1 |
| | |||||
* | Test script for the SGI imgfile module. | Roger E. Masse | 1996-12-20 | 2 | -0/+104 |
| | |||||
* | 8 bit greyscale test file needed for testing imageop and imgfile. | Roger E. Masse | 1996-12-20 | 1 | -0/+0 |
| | |||||
* | Test program for the SGI imageop module. | Roger E. Masse | 1996-12-20 | 2 | -0/+122 |
| | |||||
* | test output for SGI imageop C module. | Roger E. Masse | 1996-12-20 | 1 | -0/+1 |
| | |||||
* | Two new files (to shut up regrtest). | Guido van Rossum | 1996-12-20 | 2 | -0/+30 |
| | |||||
* | Added example DL for SGI IRIX. | Guido van Rossum | 1996-12-20 | 1 | -0/+2 |
| | |||||
* | Added test for minmax. | Guido van Rossum | 1996-12-20 | 1 | -0/+7 |
| | |||||
* | New regression test harness. See usage message / doc string. | Guido van Rossum | 1996-12-20 | 1 | -0/+170 |
| | |||||
* | Import verbose flag from test_support instead of testing __name__. | Guido van Rossum | 1996-12-20 | 1 | -5/+1 |
| | |||||
* | Set test_support.verbose to 0, to signal tests only to generate | Guido van Rossum | 1996-12-20 | 1 | -0/+2 |
| | | | | portable output. | ||||
* | Add verbose flag for regression test to clear. | Guido van Rossum | 1996-12-20 | 1 | -0/+2 |
| | |||||
* | Test of the operator module | Barry Warsaw | 1996-12-18 | 3 | -0/+78 |
| | |||||
* | Test script output for the UNIX group file access module (grp) | Roger E. Masse | 1996-12-18 | 1 | -0/+1 |
| | |||||
* | Test script for the UNIX group file access module (grp) | Roger E. Masse | 1996-12-18 | 2 | -0/+25 |
| |