diff --git a/base/deprecated.jl b/base/deprecated.jl index d16ac4a791185..02781b4948114 100644 --- a/base/deprecated.jl +++ b/base/deprecated.jl @@ -1005,7 +1005,7 @@ export @vectorize_1arg, @vectorize_2arg # deprecations for uses of old dot operators (.* etc) as objects, rather than # just calling them infix. -for op in (:(!=), :≠, :+, :-, :*, :/, :÷, :%, :<, :(<=), :≤, :(==), :>, :>=, :≥, :\, :^) +for op in (:(!=), :≠, :+, :-, :*, :/, :÷, :%, :<, :(<=), :≤, :(==), :>, :>=, :≥, :\, :^, ://, :>>, :<<) dotop = Symbol('.', op) # define as const dotop = (a,b) -> ... # to work around syntax deprecation for dotop(a,b) = ... diff --git a/base/exports.jl b/base/exports.jl index c11bea901fd19..316c52af3f4b1 100644 --- a/base/exports.jl +++ b/base/exports.jl @@ -215,7 +215,6 @@ export -, /, //, - .//, <, <:, <<, @@ -226,8 +225,6 @@ export >=, ≥, >>, - .>>, - .<<, >>>, \, ^,