Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | If sys.argv is empty ask for input file and output folder | Jack Jansen | 1996-12-23 | 1 | -0/+26 |
| | |||||
* | 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!] | ||||
* | Renamed. | Roger E. Masse | 1996-12-20 | 1 | -380/+406 |
| | |||||
* | Several changes. Test program to follow. | Barry Warsaw | 1996-12-20 | 1 | -162/+267 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | - Where optional arguments were being used, converted to PyArg_ParseTuple() style instead of nested PyArg_Parse() style. - Check for and handle many potential error conditions that were never being tested. - internal reg_* functions renamed to regobj_* (makes it easier to figure out which are global regex functions and which are for regex objects). - reg_group (now regobj_group) was quite extensively reworked. it no longer recurses to do its job (by factoring core functionality into a separate function that knows about string and integer indexes). - some minor formatting fixes. - regex_set_syntax() now invalidates the cache. Without this change (in the example below), the second search would produce different output depending on whether the first search were performed or not (since performing the first search would cache the compiled object with RE_SYNTAX_EMACS, causing the second test to unexpectedly fail). regex.search('(a+)|(b+)', 'cdb') prev = regex.set_syntax(RE_SYNTAX_AWK) regex.search('(a+)|(b+)', 'cdb') | ||||
* | 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 |
| | |||||
* | Renamed. | Roger E. Masse | 1996-12-20 | 1 | -615/+625 |
| | |||||
* | 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 |
| | |||||
* | (python-cc-style): Added definitions for c-hanging-braces-alist which | Barry Warsaw | 1996-12-20 | 1 | -1/+1 |
| | | | | make the most sense for PyMethodDef structures. [one small fix] | ||||
* | (python-cc-style): Added definitions for c-hanging-braces-alist which | Barry Warsaw | 1996-12-20 | 1 | -2/+8 |
| | | | | make the most sense for PyMethodDef structures. | ||||
* | 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 |
| | |||||
* | Describe open(2) exported constants | Barry Warsaw | 1996-12-19 | 2 | -0/+60 |
| | |||||
* | 1. Export open(2) flag constants for every defined constant | Barry Warsaw | 1996-12-19 | 1 | -16/+88 |
| | | | | 2. Reworked error checking in initposix() and initnt(). | ||||
* | Docs for stat.py -- docs by Skip Montanaro. | Guido van Rossum | 1996-12-19 | 2 | -0/+212 |
| | |||||
* | posix.open(): third argument (mode) is optional. | Barry Warsaw | 1996-12-19 | 2 | -4/+8 |
| | |||||
* | Minor formatting changes. | Barry Warsaw | 1996-12-19 | 1 | -10/+11 |
| | |||||
* | Minor formatting changes. | Barry Warsaw | 1996-12-19 | 1 | -31/+33 |
| | |||||
* | Documented getprotobyname() interface. | Guido van Rossum | 1996-12-19 | 2 | -0/+18 |
| | |||||
* | Added the new getprotobyname() call to the module overview at the top. | Guido van Rossum | 1996-12-19 | 1 | -0/+1 |
| | |||||
* | Added getprotobyname() interface. | Guido van Rossum | 1996-12-19 | 1 | -0/+24 |
| | |||||
* | (libunix.tex): Change matching lib.tex: add line item for the resource | Fred Drake | 1996-12-19 | 2 | -0/+8 |
| | | | | module. | ||||
* | Removed references to getdoublearg and get2doublearg rename macros and | Roger E. Masse | 1996-12-18 | 1 | -8/+5 |
| | | | | substituted the appropriate PyArg_Parse calls. Retested. All appears well. | ||||
* | Eradicated all references to getintarg and getstrarg and substituded the | Roger E. Masse | 1996-12-18 | 1 | -5/+2 |
| | | | | proper functions as defined in rename2.h. Thanks Barry! | ||||
* | Opps, left out two defines needed for argument parsing. | Roger E. Masse | 1996-12-18 | 1 | -0/+3 |
| | |||||
* | Test of the operator module | Barry Warsaw | 1996-12-18 | 3 | -0/+78 |
| | |||||
* | Added pointer to framereader distribution. | Guido van Rossum | 1996-12-18 | 1 | -1/+2 |
| | |||||
* | Tabification changes only; the module was already newly named. | Barry Warsaw | 1996-12-18 | 1 | -32/+37 |
| | |||||
* | Renamed. | Roger E. Masse | 1996-12-18 | 1 | -28/+27 |
| | |||||
* | 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 |
| | |||||
* | PySequence_Index(): set exception when object is not found in | Barry Warsaw | 1996-12-18 | 1 | -0/+1 |
| | | | | | | | | | sequence, otherwise operator.indexOf([4, 3, 2, 1], 9) would raise a SystemError! Note: it might be wise to double check all these functions. I haven't done that yet. | ||||
* | Added Jeremy's resource module. | Guido van Rossum | 1996-12-18 | 3 | -0/+242 |
| | |||||
* | Added docs for Jeremy's resource module. | Guido van Rossum | 1996-12-18 | 5 | -1/+265 |
| | |||||
* | Different operation in verbose mode: show the supported nonstandard | Guido van Rossum | 1996-12-18 | 1 | -2/+16 |
| | | | | options. Also added two: %n and %t (newline and tab character). | ||||
* | In lieu of harness rewrite, fixed problem with test_thread ImportError | Barry Warsaw | 1996-12-18 | 1 | -17/+14 |
| | | | | triggering a bogus TestFailed exception. | ||||
* | Correct *another* mistake (initmath() always fell through to fatal error). | Guido van Rossum | 1996-12-18 | 1 | -0/+1 |
| | | | | Watch it, Barry! :-) | ||||
* | Correct 1-char typo / syntax error. | Guido van Rossum | 1996-12-18 | 1 | -1/+1 |
| | |||||
* | (py-delete-function): new variable | Barry Warsaw | 1996-12-17 | 1 | -1/+7 |
| | | | | (py-delete-char): funcall py-delete-function. |