Join GitHub today
GitHub is home to over 31 million developers working together to host and review code, manage projects, and build software together.
Sign upstd::prelude::v1 still references old_path and old_io #23377
Comments
lilyball
referenced this issue
Mar 15, 2015
Closed
std::io::prelude should stop renaming Seek #23378
lilyball
added
the
I-nominated
label
Mar 15, 2015
This comment has been minimized.
This comment has been minimized.
|
Since |
alexcrichton
added a commit
to alexcrichton/rust
that referenced
this issue
Mar 18, 2015
alexcrichton
referenced this issue
Mar 18, 2015
Merged
std: Remove old_io/old_path from the prelude #23470
alexcrichton
added a commit
to alexcrichton/rust
that referenced
this issue
Mar 18, 2015
Manishearth
added a commit
to Manishearth/rust
that referenced
this issue
Mar 19, 2015
Manishearth
added a commit
to Manishearth/rust
that referenced
this issue
Mar 19, 2015
bors
added a commit
that referenced
this issue
Mar 19, 2015
alexcrichton
added a commit
to alexcrichton/rust
that referenced
this issue
Mar 19, 2015
This comment has been minimized.
This comment has been minimized.
|
1.0 beta, P-backcompat-libs. ( @alexcrichton says there's a PR in the queue.) |
pnkfelix
added this to the 1.0 beta milestone
Mar 19, 2015
pnkfelix
added
P-backcompat-libs
and removed
I-nominated
labels
Mar 19, 2015
Manishearth
added a commit
to Manishearth/rust
that referenced
this issue
Mar 20, 2015
bors
added a commit
that referenced
this issue
Mar 20, 2015
alexcrichton
added a commit
to alexcrichton/rust
that referenced
this issue
Mar 20, 2015
bors
added a commit
that referenced
this issue
Mar 20, 2015
alexcrichton
added a commit
to alexcrichton/rust
that referenced
this issue
Mar 20, 2015
bors
added a commit
that referenced
this issue
Mar 20, 2015
alexcrichton
added a commit
to alexcrichton/rust
that referenced
this issue
Mar 20, 2015
bors
added a commit
that referenced
this issue
Mar 21, 2015
alexcrichton
added a commit
to alexcrichton/rust
that referenced
this issue
Mar 21, 2015
bors
added a commit
that referenced
this issue
Mar 21, 2015
bors
closed this
in
#23470
Mar 21, 2015
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
lilyball commentedMar 15, 2015
std::prelude::v1is still importing items fromstd::old_pathandstd::old_io, which are both now deprecated. The prelude should be updated to import the relevant items fromstd::pathandstd::ioinstead.std::prelude::v1is already marked stable, which seems like a mistake given that it contained these old items. We could transition to a newstd::prelude::v2, but it seems odd to do that before Rust 1.0, so I think we should accept that it was incorrectly stabilized and modifystd::prelude::v1./cc @alexcrichton