Uh oh!
There was an error while loading. Please reload this page.
Remove more deprecated functionality - #24636
Conversation
rust-highfive
commented
Apr 20, 2015
r? @brson (rust_highfive has picked a reviewer for you, use r? to override) |
brson
commented
Apr 20, 2015
I tagged this with 'beta' so we don't forget this needs to go in. |
brson
commented
Apr 20, 2015
@bors r+ |
bors
commented
Apr 20, 2015
📌 Commit cdaf880 has been approved by |
bors
commented
Apr 21, 2015
☔ The latest upstream changes (presumably #24648) made this pull request unmergeable. Please resolve the merge conflicts. |
c1da532 to
92369daComparealexcrichton
commented
Apr 21, 2015
bors
commented
Apr 21, 2015
⌛ Testing commit 92369da with merge 1860461... |
bors
commented
Apr 21, 2015
💔 Test failed - auto-linux-32-opt |
bors
commented
Apr 21, 2015
☔ The latest upstream changes (presumably #24620) made this pull request unmergeable. Please resolve the merge conflicts. |
Cleaning out more deprecated items
This commit removes all the old casting/generic traits from `std::num` that are no longer in use by the standard library. This additionally removes the old `strconv` module which has not seen much use in quite a long time. All generic functionality has been supplanted with traits in the `num` crate and the `strconv` module is supplanted with the [rust-strconv crate][rust-strconv]. [rust-strconv]: https://github.com/lifthrasiir/rust-strconv This is a breaking change due to the removal of these deprecated crates, and the alternative crates are listed above. [breaking-change]
3e5a4af to
41dddceComparealexcrichton
commented
Apr 21, 2015
bors
commented
Apr 21, 2015
⌛ Testing commit 41dddce with merge db958b7... |
bors
commented
Apr 21, 2015
💔 Test failed - auto-win-64-nopt-t |
41dddce to
1a10133Comparealexcrichton
commented
Apr 21, 2015
@bors: r+ On Tue, Apr 21, 2015 at 12:54 PM, bors notifications@github.com wrote:
|
bors
commented
Apr 21, 2015
📌 Commit 1a10133 has been approved by |
bors
commented
Apr 21, 2015
⌛ Testing commit 1a10133 with merge 09e67cf... |
bors
commented
Apr 21, 2015
💔 Test failed - auto-win-64-nopt-t |
1a10133 to
028aaaaComparealexcrichton
commented
Apr 21, 2015
8f0650e to
1a19c78CompareThis API was exercised in a few tests and mirrors the `from_str_radix` functionality of the integer types.
1a19c78 to
a568a7fComparealexcrichton
commented
Apr 21, 2015
Conflicts: src/libcore/result.rs
pnkfelix
commented
Apr 23, 2015
going from nominated to (nominated, accepted) |
This removes a large amount of deprecated functionality (pre-1.0 beta). Mostly this cleans up
std::num.