Skip to content

Commit bf45de8

Browse files
authored
fix #26571, use 10 as the default base in parse(T, ::Char) (#26576)
1 parent bf1215c commit bf45de8

File tree

3 files changed

+8
-4
lines changed

3 files changed

+8
-4
lines changed

NEWS.md

+3
Original file line numberDiff line numberDiff line change
@@ -456,6 +456,9 @@ This section lists changes that do not have deprecation warnings.
456456

457457
* `indexin` now returns the first rather than the last matching index ([#25998]).
458458

459+
* `parse(::Type, ::Char)` now uses a default base of 10, like other number parsing
460+
methods, instead of 36 ([#26576]).
461+
459462
Library improvements
460463
--------------------
461464

base/parse.jl

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ julia> parse(Complex{Float64}, "3.2e-1 + 4.5im")
3333
"""
3434
parse(T::Type, str; base = Int)
3535

36-
function parse(::Type{T}, c::AbstractChar; base::Integer = 36) where T<:Integer
36+
function parse(::Type{T}, c::AbstractChar; base::Integer = 10) where T<:Integer
3737
a::Int = (base <= 36 ? 10 : 36)
3838
2 <= base <= 62 || throw(ArgumentError("invalid base: base must be 2 ≤ base ≤ 62, got $base"))
3939
d = '0' <= c <= '9' ? c-'0' :

test/parse.jl

+4-3
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,12 @@
2323
@test parse(Int,"-10") == -10
2424
@test parse(Int64,"3830974272") == 3830974272
2525
@test parse(Int64,"-3830974272") == -3830974272
26+
2627
@test parse(Int,'3') == 3
2728
@test parse(Int,'3', base = 8) == 3
29+
@test parse(Int, 'a', base=16) == 10
30+
@test_throws ArgumentError parse(Int, 'a')
31+
@test_throws ArgumentError parse(Int,typemax(Char))
2832

2933
# Issue 20587
3034
for T in Any[BigInt, Int128, Int16, Int32, Int64, Int8, UInt128, UInt16, UInt32, UInt64, UInt8]
@@ -173,9 +177,6 @@ parsehex(s) = parse(Int,s, base = 16)
173177
@test parse(Int, "3\u2003\u202F") == 3
174178
@test_throws ArgumentError parse(Int, "3\u2003\u202F,")
175179

176-
@test parse(Int,'a') == 10
177-
@test_throws ArgumentError parse(Int,typemax(Char))
178-
179180
@test parse(Int,"1234") == 1234
180181
@test parse(Int,"0x1234") == 0x1234
181182
@test parse(Int,"0o1234") == 0o1234

0 commit comments

Comments
 (0)