Auto merge of #26450 - rick68:patch-7, r=alexcrichton

`core::num::from_str_radix` can't parse the prefix `+` .

http://is.gd/ewo0T2
This commit is contained in:
bors 2015-06-21 05:18:39 +00:00
commit ffe0b6657f

View File

@ -1372,14 +1372,13 @@ macro_rules! from_str_float_impl {
/// This function accepts strings such as
///
/// * '3.14'
/// * '+3.14', equivalent to '3.14'
/// * '-3.14'
/// * '2.5E10', or equivalently, '2.5e10'
/// * '2.5E-10'
/// * '.' (understood as 0)
/// * '5.'
/// * '.5', or, equivalently, '0.5'
/// * '+inf', 'inf', '-inf', 'NaN'
/// * 'inf', '-inf', 'NaN'
///
/// Leading and trailing whitespace represent an error.
///