about summary refs log tree commit diff
path: root/src/libstd/fileinput.rs
AgeCommit message (Collapse)AuthorLines
2013-05-14Use static string with fail!() and remove fail!(fmt!())Björn Steinbrink-1/+1
fail!() used to require owned strings but can handle static strings now. Also, it can pass its arguments to fmt!() on its own, no need for the caller to call fmt!() itself.
2013-05-11clean up the last bit of warningsCorey Richardson-4/+4
2013-05-11Warning policeTim Chevalier-13/+8
2013-05-10test: Use the new `for` protocolAlex Crichton-0/+60
2013-05-08libstd: Remove mutable fields from fileinput and net_tcpPatrick Walton-2/+2
2013-04-27only use #[no_core] in libcoreDaniel Micay-2/+0
2013-04-04Fix fileinput test failILyoan-1/+1
2013-04-03libstd: make fileinput tests pass.Huon Wilson-3/+5
2013-04-03libstd: implement io::Reader for fileinput.Huon Wilson-126/+271
2013-04-03libstd: implement fileinput.Huon Wilson-0/+464
Iterate over lines in a series of files. API (mostly) adopted from Python's fileinput module.