diff --git a/README.md b/README.md index ca889b48d..6b8f84a7c 100644 --- a/README.md +++ b/README.md @@ -174,8 +174,6 @@ Currently, the `@compat` macro supports the following syntaxes: * `reprmime(mime, x)` is now `repr(mime, x)` ([#25990]) and `mimewritable` is now `showable` ([#26089]). -* `IntSet` is now `BitSet` ([#24282]) - * `strwidth` and `charwidth` are now merged into `textwidth` ([#23667]). * `Complex32`, `Complex64`, and `Complex128` are now `ComplexF16`, `ComplexF32`, and diff --git a/src/Compat.jl b/src/Compat.jl index 3346003f5..832c93008 100644 --- a/src/Compat.jl +++ b/src/Compat.jl @@ -36,12 +36,6 @@ import Base: Fix2 include("compatmacro.jl") -# 0.7.0-DEV.2318 -@static if !isdefined(Base, :BitSet) - const BitSet = IntSet - export BitSet -end - # 0.7.0-DEV.2116 @static if VERSION < v"0.7.0-DEV.2116" import Compat.SparseArrays: spdiagm diff --git a/test/old.jl b/test/old.jl index deb7a5360..bdc405290 100644 --- a/test/old.jl +++ b/test/old.jl @@ -485,3 +485,6 @@ end # 0.7 @test 'a'*"b" == "a"*'b' == 'a'*'b' == "ab" + +# 0.7 +@test 1 in BitSet(1:10) diff --git a/test/runtests.jl b/test/runtests.jl index 22fa11c37..a09aaf5e0 100644 --- a/test/runtests.jl +++ b/test/runtests.jl @@ -72,9 +72,6 @@ if VERSION < v"0.7.0-DEV.880" end end -# 0.7 -@test 1 in BitSet(1:10) - # 0.7.0-DEV.1930 @test textwidth("A") == 1 @test textwidth('A') == 1