1. 25 Nov, 1997 16 commits
  2. 24 Nov, 1997 11 commits
  3. 22 Nov, 1997 12 commits
  4. 21 Nov, 1997 1 commit
    • Guido van Rossum's avatar
      A new standard module, as discussed on comp.lang.python, to simplify · 7d5b99d8
      Guido van Rossum authored
      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.
      7d5b99d8