Skip to content

Commit 07ae32c

Browse files
committed
Add support for multiarg InexactError, DomainError, OverflowError
1 parent 8281370 commit 07ae32c

File tree

3 files changed

+31
-0
lines changed

3 files changed

+31
-0
lines changed

README.md

+5
Original file line numberDiff line numberDiff line change
@@ -159,6 +159,8 @@ Currently, the `@compat` macro supports the following syntaxes:
159159
* `fieldcount` is equivalent to `nfields` for Julia versions 0.6 and below and is used to
160160
determine the number of fields in a data type ([#22350]).
161161

162+
* There are versions of `InexactError`, `DomainError`, and `OverflowError` that take the same arguments as introduced in Julia 0.7-DEV ([#20005], [#22751], [#22761]).
163+
162164
## Renamed functions
163165

164166

@@ -311,11 +313,14 @@ includes this fix. Find the minimum version from there.
311313
[#20974]: https://github.com/JuliaLang/julia/issues/20974
312314
[#21257]: https://github.com/JuliaLang/julia/issues/21257
313315
[#21346]: https://github.com/JuliaLang/julia/issues/21346
316+
[#22005]: https://github.com/JuliaLang/julia/issues/22005
314317
[#22064]: https://github.com/JuliaLang/julia/issues/22064
315318
[#22182]: https://github.com/JuliaLang/julia/issues/22182
316319
[#22350]: https://github.com/JuliaLang/julia/issues/22350
317320
[#22475]: https://github.com/JuliaLang/julia/issues/22475
318321
[#22633]: https://github.com/JuliaLang/julia/issues/22633
319322
[#22629]: https://github.com/JuliaLang/julia/issues/22629
320323
[#22666]: https://github.com/JuliaLang/julia/pull/22666
324+
[#22751]: https://github.com/JuliaLang/julia/pull/22751
325+
[#22761]: https://github.com/JuliaLang/julia/pull/22761
321326
[#22864]: https://github.com/JuliaLang/julia/pull/22864

src/Compat.jl

+16
Original file line numberDiff line numberDiff line change
@@ -488,6 +488,22 @@ if VERSION < v"0.7.0-DEV.1053"
488488
Base.read(obj::Cmd, ::Type{String}) = readstring(obj)
489489
end
490490

491+
# https://github.com/JuliaLang/julia/pull/20005
492+
if VERSION < v"0.7.0-DEV.896"
493+
Base.InexactError(name::Symbol, T, val) = InexactError()
494+
end
495+
496+
# https://github.com/JuliaLang/julia/pull/22751
497+
if VERSION < v"0.7.0-DEV.924"
498+
Base.DomainError(val) = DomainError()
499+
Base.DomainError(val, msg) = DomainError()
500+
end
501+
502+
# https://github.com/JuliaLang/julia/pull/222761
503+
if VERSION < v"0.7.0-DEV.1285"
504+
Base.OverflowError(msg) = OverflowError()
505+
end
506+
491507
include("deprecated.jl")
492508

493509
end # module Compat

test/runtests.jl

+10
Original file line numberDiff line numberDiff line change
@@ -658,6 +658,16 @@ eval(Expr(:type, false, :TestType, Expr(:block, :(a::Int), :b)))
658658
@test fieldcount(TestType) == 2
659659
@test fieldcount(Int) == 0
660660

661+
# PR 20005
662+
@test_throws InexactError throw(InexactError(:func, Int, 3.2))
663+
664+
# PR 22751
665+
@test_throws DomainError throw(DomainError(-2))
666+
@test_throws DomainError throw(DomainError(-2, "negative"))
667+
668+
# PR 22761
669+
@test_throws OverflowError throw(OverflowError("overflow"))
670+
661671
let x = fill!(StringVector(5), 0x61)
662672
# 0.7
663673
@test pointer(x) == pointer(String(x))

0 commit comments

Comments
 (0)