Add a tracking issue for file_buffered · qinheping/verify-rust-std@2ab86f0 (original) (raw)

Original file line number Diff line number Diff line change
@@ -405,7 +405,7 @@ impl File {
405 405 /// Ok(())
406 406 /// }
407 407 /// ```
408 - #[unstable(feature = "file_buffered", issue = "none")]
408 + #[unstable(feature = "file_buffered", issue = "130804")]
409 409 pub fn open_buffered<P: AsRef<Path>>(path: P) -> io::Result<io::BufReader<File>> {
410 410 // Allocate the buffer *first* so we don't affect the filesystem otherwise.
411 411 let buffer = io::BufReader::<Self>::try_new_buffer()?;
@@ -473,7 +473,7 @@ impl File {
473 473 /// Ok(())
474 474 /// }
475 475 /// ```
476 - #[unstable(feature = "file_buffered", issue = "none")]
476 + #[unstable(feature = "file_buffered", issue = "130804")]
477 477 pub fn create_buffered<P: AsRef<Path>>(path: P) -> io::Result<io::BufWriter<File>> {
478 478 // Allocate the buffer *first* so we don't affect the filesystem otherwise.
479 479 let buffer = io::BufWriter::<Self>::try_new_buffer()?;