Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | Add missing initializer for self._backupfilename. Due to Ralph Butler. | Guido van Rossum | 1998-07-20 | 1 | -0/+1 | |
| | ||||||
* | Mass check-in after untabifying all files that need it. | Guido van Rossum | 1998-03-26 | 1 | -100/+100 | |
| | ||||||
* | A new standard module, as discussed on comp.lang.python, to simplify | Guido van Rossum | 1997-11-21 | 1 | -0/+254 | |
the writing of filters. Typical use is: import fileinput for line in fileinput.input(): process(line) This iterates over the lines of all files listed in sys.argv[1:], defaulting to sys.stdin if the list is empty or when a filename is '-'. There is also an option to use this to direct the output back to the input files. |