| Age | Commit message (Expand) | Author | Lines |
| 2016-05-09 | Utilize `Result::unwrap_err` in more places. | Corey Farwell | -1/+1 |
| 2016-03-22 | try! -> ? | Jorge Aparicio | -9/+9 |
| 2016-03-07 | Add test case for #32085 | Steven Allen | -0/+28 |
| 2016-03-07 | Never return an error after a partial write | Steven Allen | -2/+4 |
| 2016-01-26 | Fix warnings during tests | Alex Crichton | -2/+2 |
| 2016-01-22 | Auto merge of #31070 - sfackler:bufreader-box-slice, r=alexcrichton | bors | -2/+2 |
| 2016-01-20 | Use a Box<[u8]> in BufReader | Steven Fackler | -2/+2 |
| 2016-01-20 | Don't flush in BufWriter destructor after a panic in write | Steven Fackler | -3/+40 |
| 2016-01-12 | Remove dead `InternalBufWriter` implementation | Andrea Canciani | -15/+0 |
| 2015-12-29 | Fix warnings when compiling stdlib with --test | Florian Hahn | -1/+1 |
| 2015-12-18 | Use memchr in libstd where possible, closes #30076 | Florian Hahn | -1/+2 |
| 2015-11-18 | Add missing annotations and some tests | Vadim Petrochenkov | -0/+1 |
| 2015-10-08 | typos: fix a grabbag of typos all over the place | Cristi Cobzarenco | -1/+1 |
| 2015-08-12 | Remove all unstable deprecated functionality | Alex Crichton | -148/+1 |
| 2015-07-29 | Rollup merge of #27341 - steveklabnik:remove_warning, r=alexcrichton | Steve Klabnik | -4/+0 |
| 2015-07-27 | Remove warning header for consistency | Steve Klabnik | -4/+0 |
| 2015-07-27 | std: Deprecate a number of unstable features | Alex Crichton | -1/+1 |
| 2015-07-22 | Rollup merge of #27170 - steveklabnik:doc_std_io_intoinnererror, r=alexcrichton | Steve Klabnik | -1/+73 |
| 2015-07-22 | Rollup merge of #27166 - steveklabnik:doc_std_io_linewriter, r=alexcrichton | Steve Klabnik | -3/+120 |
| 2015-07-22 | Improve documentation for std::io::LineWriter | Steve Klabnik | -3/+120 |
| 2015-07-22 | Improve documentation for std::io::BufWriter | Steve Klabnik | -5/+97 |
| 2015-07-21 | Expand documentation for IntoInnerError | Steve Klabnik | -1/+73 |
| 2015-07-14 | Use Vec::drain in BufWriter | Ulrik Sverdrup | -8/+1 |
| 2015-07-10 | More docs for std::io::BufReader | Steve Klabnik | -4/+77 |
| 2015-07-08 | Auto merge of #26849 - bluss:read-to-end-memset, r=alexcrichton | bors | -4/+1 |
| 2015-07-08 | io: Simplify BufReader::with_capacity | Ulrik Sverdrup | -4/+1 |
| 2015-07-05 | std: small doc fixes for BufReader and BufWriter | Georg Brandl | -8/+8 |
| 2015-06-17 | More test fixes and fallout of stability changes | Alex Crichton | -0/+5 |
| 2015-06-17 | std: Deprecate the io::BufStream type | Alex Crichton | -0/+4 |
| 2015-05-19 | Add example code and cross-link to BufReader docs | Matt Brubeck | -0/+18 |
| 2015-05-05 | Auto merge of #25009 - alexcrichton:less-buffered-stream, r=aturon | bors | -10/+18 |
| 2015-05-01 | Auto merge of #25006 - alexcrichton:unstable-indexing, r=aturon | bors | -3/+3 |
| 2015-05-01 | std: Remove index notation on slice iterators | Alex Crichton | -3/+3 |
| 2015-04-30 | Add downcasting to std::error::Error | Aaron Turon | -1/+2 |
| 2015-04-30 | std: Destabilize io::BufStream | Alex Crichton | -10/+18 |
| 2015-04-28 | Register new snapshots | Tamir Duberstein | -1/+0 |
| 2015-04-21 | Model lexer: Fix remaining issues | Piotr Czarnecki | -2/+0 |
| 2015-04-08 | Implement io::Seek for io::BufWriter<W> where W: io::Seek | Kevin Ballard | -0/+22 |
| 2015-04-08 | Implement io::Seek for io::BufReader<R> where R: io::Seek | Kevin Ballard | -2/+109 |
| 2015-03-31 | Test fixes and rebase conflicts, round 3 | Alex Crichton | -22/+22 |
| 2015-03-31 | rollup merge of #23919: alexcrichton/stabilize-io-error | Alex Crichton | -1/+1 |
| 2015-03-31 | std: Stabilize last bits of io::Error | Alex Crichton | -1/+1 |
| 2015-03-31 | rollup merge of #23879: seanmonstar/del-from-error | Alex Crichton | -3/+3 |
| 2015-03-30 | convert: remove FromError, use From<E> instead | Sean McArthur | -3/+3 |
| 2015-03-30 | std: Standardize (input, output) param orderings | Alex Crichton | -2/+2 |
| 2015-03-28 | Fix massive performance issue in read_to_end | Steven Fackler | -28/+43 |
| 2015-03-27 | rollup merge of #23741: alexcrichton/remove-int-uint | Alex Crichton | -2/+2 |
| 2015-03-26 | syntax: Remove support for #[should_fail] | Alex Crichton | -1/+1 |
| 2015-03-26 | Mass rename uint/int to usize/isize | Alex Crichton | -2/+2 |
| 2015-03-24 | Added `Write` bounds to avoid a specialized Drop impl for `BufWriter`. | Felix S. Klock II | -9/+9 |