Skip to content

Commit f27c6f3

Browse files
authored
add missing deprecations for .//, .>>, .<< (#19683)
1 parent 51b6b06 commit f27c6f3

File tree

2 files changed

+1
-4
lines changed

2 files changed

+1
-4
lines changed

base/deprecated.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1005,7 +1005,7 @@ export @vectorize_1arg, @vectorize_2arg
10051005

10061006
# deprecations for uses of old dot operators (.* etc) as objects, rather than
10071007
# just calling them infix.
1008-
for op in (:(!=), :, :+, :-, :*, :/, :÷, :%, :<, :(<=), :, :(==), :>, :>=, :, :\, :^)
1008+
for op in (:(!=), :, :+, :-, :*, :/, :÷, :%, :<, :(<=), :, :(==), :>, :>=, :, :\, :^, ://, :>>, :<<)
10091009
dotop = Symbol('.', op)
10101010
# define as const dotop = (a,b) -> ...
10111011
# to work around syntax deprecation for dotop(a,b) = ...

base/exports.jl

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -215,7 +215,6 @@ export
215215
-,
216216
/,
217217
//,
218-
.//,
219218
<,
220219
<:,
221220
<<,
@@ -226,8 +225,6 @@ export
226225
>=,
227226
,
228227
>>,
229-
.>>,
230-
.<<,
231228
>>>,
232229
\,
233230
^,

0 commit comments

Comments
 (0)