Skip to content

Commit 4ab3bcb

Browse files
committed
Fix up stability annotations per feedback.
1 parent 07766f6 commit 4ab3bcb

File tree

8 files changed

+9
-31
lines changed

8 files changed

+9
-31
lines changed

src/doc/unstable-book/src/SUMMARY.md

+1-3
Original file line numberDiff line numberDiff line change
@@ -130,8 +130,6 @@
130130
- [derive_eq](library-features/derive-eq.md)
131131
- [discriminant_value](library-features/discriminant-value.md)
132132
- [error_type_id](library-features/error-type-id.md)
133-
- [eprint](library-features/eprint.md)
134-
- [eprint_internal](library-features/eprint-internal.md)
135133
- [exact_size_is_empty](library-features/exact-size-is-empty.md)
136134
- [fd](library-features/fd.md)
137135
- [fd_read](library-features/fd-read.md)
@@ -180,7 +178,7 @@
180178
- [peek](library-features/peek.md)
181179
- [placement_in](library-features/placement-in.md)
182180
- [placement_new_protocol](library-features/placement-new-protocol.md)
183-
- [print](library-features/print.md)
181+
- [print_internals](library-features/print-internals.md)
184182
- [proc_macro_internals](library-features/proc-macro-internals.md)
185183
- [process_try_wait](library-features/process-try-wait.md)
186184
- [question_mark_carrier](library-features/question-mark-carrier.md)

src/doc/unstable-book/src/library-features/eprint.md

-13
This file was deleted.

src/doc/unstable-book/src/library-features/eprint-internal.md src/doc/unstable-book/src/library-features/print-internals.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# `eprint_internal`
1+
# `print_internals`
22

33
This feature is internal to the Rust compiler and is not intended for general use.
44

src/doc/unstable-book/src/library-features/print.md

-5
This file was deleted.

src/libstd/io/mod.rs

+3-3
Original file line numberDiff line numberDiff line change
@@ -287,11 +287,11 @@ pub use self::error::{Result, Error, ErrorKind};
287287
#[stable(feature = "rust1", since = "1.0.0")]
288288
pub use self::util::{copy, sink, Sink, empty, Empty, repeat, Repeat};
289289
#[stable(feature = "rust1", since = "1.0.0")]
290-
pub use self::stdio::{stdin, stdout, stderr, _print, Stdin, Stdout, Stderr};
290+
pub use self::stdio::{stdin, stdout, stderr, Stdin, Stdout, Stderr};
291291
#[stable(feature = "rust1", since = "1.0.0")]
292292
pub use self::stdio::{StdoutLock, StderrLock, StdinLock};
293-
#[unstable(feature = "eprint", issue="40528")]
294-
pub use self::stdio::_eprint;
293+
#[unstable(feature = "print_internals", issue = "0")]
294+
pub use self::stdio::{_print, _eprint};
295295
#[unstable(feature = "libstd_io_internals", issue = "0")]
296296
#[doc(no_inline, hidden)]
297297
pub use self::stdio::{set_panic, set_print};

src/libstd/io/stdio.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -692,15 +692,15 @@ fn print_to<T>(args: fmt::Arguments,
692692
}
693693
}
694694

695-
#[unstable(feature = "print",
695+
#[unstable(feature = "print_internals",
696696
reason = "implementation detail which may disappear or be replaced at any time",
697697
issue = "0")]
698698
#[doc(hidden)]
699699
pub fn _print(args: fmt::Arguments) {
700700
print_to(args, &LOCAL_STDOUT, stdout, "stdout");
701701
}
702702

703-
#[unstable(feature = "eprint_internal",
703+
#[unstable(feature = "print_internals",
704704
reason = "implementation detail which may disappear or be replaced at any time",
705705
issue = "0")]
706706
#[doc(hidden)]

src/libstd/macros.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,7 @@ macro_rules! println {
143143
///
144144
/// Panics if writing to `io::stderr` fails.
145145
#[macro_export]
146-
#[unstable(feature = "eprint", issue="40528")]
146+
#[stable(feature = "eprint", since="1.18.0")]
147147
#[allow_internal_unstable]
148148
macro_rules! eprint {
149149
($($arg:tt)*) => ($crate::io::_eprint(format_args!($($arg)*)));
@@ -162,7 +162,7 @@ macro_rules! eprint {
162162
///
163163
/// Panics if writing to `io::stderr` fails.
164164
#[macro_export]
165-
#[unstable(feature = "eprint", issue="40528")]
165+
#[stable(feature = "eprint", since="1.18.0")]
166166
macro_rules! eprintln {
167167
() => (eprint!("\n"));
168168
($fmt:expr) => (eprint!(concat!($fmt, "\n")));

src/test/run-pass/print-stdout-eprint-stderr.rs

-2
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,6 @@
88
// option. This file may not be copied, modified, or distributed
99
// except according to those terms.
1010

11-
#![feature(eprint)]
12-
1311
use std::{env, process};
1412

1513
fn child() {

0 commit comments

Comments
 (0)