about summary refs log tree commit diff
path: root/src/libstd/fileinput.rs
AgeCommit message (Collapse)AuthorLines
2013-05-22libstd: Rename libcore to libstd and libstd to libextra; update makefiles.Patrick Walton-604/+0
This only changes the directory names; it does not change the "real" metadata names.
2013-05-20Remove two warnings about unneccesary safe blocks.Steve Klabnik-6/+2
Since a snapshot was done last night, these are good to go.
2013-05-19Register snapshotsBrian Anderson-56/+0
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.