$ProjectHeader: repeatmodule 1.0.2 Wed, 05 Apr 2000 23:24:58 -0600 nas $

A little Python extension module so you can do stuff like:
	
	import sys
	from repeat import repeat
	for line in repeat(sys.stdin.readline):
		...

repeat.repeat(<function>, [<until>]) -> RepeatObject

RepeatObjects are sequences that only support the method __getitem__.
<function> is called on __getitem__.  If <until> is not specified a
false value from <function> raises an IndexError.  If <until> is
specified, if the value is equal to <until> then IndexError is
raised.

Build using:

	make -f Makefile.pre.in boot
	make

Placed in the public domain.

    Neil Schemenauer <nascheme@enme.ucalgary.ca> April 05, 2000
