Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Added a chapter on using OSAXen | Jack Jansen | 1996-12-23 | 1 | -0/+17 |
| | |||||
* | Added range of resource-ids for twit. | Jack Jansen | 1996-12-23 | 1 | -1/+4 |
| | |||||
* | Added Application.cleanup method which asks all windows to close | Jack Jansen | 1996-12-23 | 1 | -0/+5 |
| | | | | themselves and returns true if they did. | ||||
* | Added gdbm (if USE_GDBM defined) | Jack Jansen | 1996-12-23 | 1 | -0/+6 |
| | |||||
* | Moved resources around to forestall conflicts with debuggee | Jack Jansen | 1996-12-23 | 8 | -17/+20 |
| | |||||
* | Added gdbm | Jack Jansen | 1996-12-23 | 1 | -0/+1 |
| | |||||
* | Added gdbm plugins, changed jpeg library to v6, various minor changes | Jack Jansen | 1996-12-23 | 33 | -11647/+12012 |
| | |||||
* | Added gdbm plugins | Jack Jansen | 1996-12-23 | 1 | -0/+2 |
| | |||||
* | 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 |
| |