Skip to content

Commit 0946a6f

Browse files
committed
deprecate syntax 1.+. fixes #19089
1 parent 2de5dab commit 0946a6f

File tree

11 files changed

+43
-35
lines changed

11 files changed

+43
-35
lines changed

NEWS.md

+2
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,8 @@ New language features
1010
Language changes
1111
----------------
1212

13+
* The syntax `1.+2` is deprecated, since it is ambiguous: it could mean either
14+
`1 .+ 2` (the current meaning) or `1. + 2` ([#19089]).
1315

1416
Breaking changes
1517
----------------

base/sparse/linalg.jl

+1-1
Original file line numberDiff line numberDiff line change
@@ -611,7 +611,7 @@ function normestinv(A::SparseMatrixCSC{T}, t::Integer = min(2,maximum(size(A))))
611611
end
612612
end
613613
end
614-
scale!(X, 1./n)
614+
scale!(X, 1 ./ n)
615615

616616
iter = 0
617617
local est

src/julia-parser.scm

+7-1
Original file line numberDiff line numberDiff line change
@@ -306,7 +306,13 @@
306306
(if (eqv? (peek-char port) #\.)
307307
(begin (read-char port)
308308
(if (dot-opchar? (peek-char port))
309-
(io.ungetc port #\.)
309+
(begin
310+
(if (not (eqv? (peek-char port) #\.))
311+
(let ((num (get-output-string str)))
312+
(syntax-deprecation port
313+
(string num #\. (peek-char port))
314+
(string num " ." (peek-char port)))))
315+
(io.ungetc port #\.))
310316
(begin (write-char #\. str)
311317
(read-digs #f #t)
312318
(if (eq? pred char-hex?)

test/arrayops.jl

+20-20
Original file line numberDiff line numberDiff line change
@@ -16,31 +16,31 @@ using TestHelpers.OAs
1616
@test length((1,)) == 1
1717
@test length((1,2)) == 2
1818

19-
@test isequal(1.+[1,2,3], [2,3,4])
20-
@test isequal([1,2,3].+1, [2,3,4])
21-
@test isequal(1.-[1,2,3], [0,-1,-2])
22-
@test isequal([1,2,3].-1, [0,1,2])
19+
@test isequal(1 .+ [1,2,3], [2,3,4])
20+
@test isequal([1,2,3] .+ 1, [2,3,4])
21+
@test isequal(1 .- [1,2,3], [0,-1,-2])
22+
@test isequal([1,2,3] .- 1, [0,1,2])
2323

2424
@test isequal(5*[1,2,3], [5,10,15])
2525
@test isequal([1,2,3]*5, [5,10,15])
26-
@test isequal(1./[1,2,5], [1.0,0.5,0.2])
26+
@test isequal(1 ./ [1,2,5], [1.0,0.5,0.2])
2727
@test isequal([1,2,3]/5, [0.2,0.4,0.6])
2828

29-
@test isequal(2.%[1,2,3], [0,0,2])
30-
@test isequal([1,2,3].%2, [1,0,1])
31-
@test isequal(2.÷[1,2,3], [2,1,0])
32-
@test isequal([1,2,3].÷2, [0,1,1])
33-
@test isequal(-2.%[1,2,3], [0,0,-2])
29+
@test isequal(2 .% [1,2,3], [0,0,2])
30+
@test isequal([1,2,3] .% 2, [1,0,1])
31+
@test isequal(2 [1,2,3], [2,1,0])
32+
@test isequal([1,2,3] 2, [0,1,1])
33+
@test isequal(-2 .% [1,2,3], [0,0,-2])
3434
@test isequal([-1,-2,-3].%2, [-1,0,-1])
35-
@test isequal(-2.÷[1,2,3], [-2,-1,0])
36-
@test isequal([-1,-2,-3].÷2, [0,-1,-1])
35+
@test isequal(-2 [1,2,3], [-2,-1,0])
36+
@test isequal([-1,-2,-3] 2, [0,-1,-1])
3737

38-
@test isequal(1.<<[1,2,5], [2,4,32])
39-
@test isequal(128.>>[1,2,5], [64,32,4])
40-
@test isequal(2.>>1, 1)
41-
@test isequal(1.<<1, 2)
42-
@test isequal([1,2,5].<<[1,2,5], [2,8,160])
43-
@test isequal([10,20,50].>>[1,2,5], [5,5,1])
38+
@test isequal(1 .<< [1,2,5], [2,4,32])
39+
@test isequal(128 .>> [1,2,5], [64,32,4])
40+
@test isequal(2 .>> 1, 1)
41+
@test isequal(1 .<< 1, 2)
42+
@test isequal([1,2,5] .<< [1,2,5], [2,8,160])
43+
@test isequal([10,20,50] .>> [1,2,5], [5,5,1])
4444

4545

4646
a = ones(2,2)
@@ -1182,8 +1182,8 @@ end
11821182
@test [1,2] [3,4] == 11
11831183
end
11841184

1185-
@test_throws DomainError (10.^[-1])[1] == 0.1
1186-
@test (10.^[-1.])[1] == 0.1
1185+
@test_throws DomainError (10 .^ [-1])[1] == 0.1
1186+
@test (10 .^ [-1.])[1] == 0.1
11871187
end
11881188
end
11891189

test/linalg/dense.jl

+2-2
Original file line numberDiff line numberDiff line change
@@ -278,7 +278,7 @@ end
278278

279279
# Against vectorized versions
280280
@test norm(x,-Inf) minimum(abs.(x))
281-
@test norm(x,-1) inv(sum(1./abs.(x)))
281+
@test norm(x,-1) inv(sum(1 ./ abs.(x)))
282282
@test norm(x,0) sum(x .!= 0)
283283
@test norm(x,1) sum(abs.(x))
284284
@test norm(x) sqrt(sum(abs2.(x)))
@@ -362,7 +362,7 @@ end
362362

363363
## Issue related tests
364364
@testset "issue #1447" begin
365-
A = [1.+0.0im 0; 0 1]
365+
A = [1.0+0.0im 0; 0 1]
366366
B = pinv(A)
367367
for i = 1:4
368368
@test A[i] B[i]

test/parse.jl

+3-3
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,9 @@ end
2121
# issue #9684
2222
let
2323
undot(op) = Symbol(string(op)[2:end])
24-
for (ex1, ex2) in [("5.≠x", "5.!=x"),
25-
("5.≥x", "5.>=x"),
26-
("5.≤x", "5.<=x")]
24+
for (ex1, ex2) in [("5 .≠ x", "5 .!= x"),
25+
("5 .≥ x", "5 .>= x"),
26+
("5 .≤ x", "5 .<= x")]
2727
ex1 = parse(ex1); ex2 = parse(ex2)
2828
@test ex1.head === :call && (ex1.head === ex2.head)
2929
@test ex1.args[2] === 5 && ex2.args[2] === 5

test/perf/kernel/laplace.jl

+3-3
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ function laplace_iter_devec(u, dx2, dy2, Niter, N)
55
for iter = 1:Niter
66
for i = 2:N-1
77
for j = 2:N-1
8-
uout[i,j] = ( (u[i-1,j]+u[i+1,j])*dy2 + (u[i,j-1]+u[i,j+1])*dx2 ) * (1./(2*(dx2+dy2)))
8+
uout[i,j] = ( (u[i-1,j]+u[i+1,j])*dy2 + (u[i,j-1]+u[i,j+1])*dx2 ) * (1 ./ (2*(dx2+dy2)))
99
end
1010
end
1111
u, uout = uout, u
@@ -24,7 +24,7 @@ end
2424

2525
function laplace_iter_vec(u, dx2, dy2, Niter, N)
2626
for i = 1:Niter
27-
u[2:N-1, 2:N-1] = ((u[1:N-2, 2:N-1] + u[3:N, 2:N-1])*dy2 + (u[2:N-1,1:N-2] + u[2:N-1, 3:N])*dx2) * (1./ (2*(dx2+dy2)))
27+
u[2:N-1, 2:N-1] = ((u[1:N-2, 2:N-1] + u[3:N, 2:N-1])*dy2 + (u[2:N-1,1:N-2] + u[2:N-1, 3:N])*dx2) * (1 ./ (2*(dx2+dy2)))
2828
end
2929
return u
3030
end
@@ -40,7 +40,7 @@ end
4040

4141
function laplace_iter_vec_sub(u, dx2, dy2, Niter, N)
4242
for i = 1:Niter
43-
u[2:N-1, 2:N-1] = ((view(u, 1:N-2, 2:N-1) + view(u,3:N, 2:N-1))*dy2 + (view(u,2:N-1,1:N-2) + view(u,2:N-1, 3:N))*dx2) * (1./ (2*(dx2+dy2)))
43+
u[2:N-1, 2:N-1] = ((view(u, 1:N-2, 2:N-1) + view(u,3:N, 2:N-1))*dy2 + (view(u,2:N-1,1:N-2) + view(u,2:N-1, 3:N))*dx2) * (1 ./ (2*(dx2+dy2)))
4444
end
4545
return u
4646
end

test/perf/kernel/raytracer.jl

+1-1
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ function Raytracer(levels, n, ss)
129129
g = 0.
130130
for dx in 0:1:(ss-1)
131131
for dy in 0:1:(ss-1)
132-
d = Vec(x+dx*1./ss-n/2., y+dy*1./ss-n/2., n*1.0)
132+
d = Vec(x+dx*1.0/ss-n/2.0, y+dy*1.0/ss-n/2.0, n*1.0)
133133
ray = Ray(Vec(0., 0., -4.0), unitize(d))
134134
g += ray_trace(light, ray, scene)
135135
end

test/perf/micro/perf.jl

+1-1
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ function pisumvec()
101101
s = 0.0
102102
a = [1:10000]
103103
for j = 1:500
104-
s = sum(1./(a.^2))
104+
s = sum(1 ./ (a.^2))
105105
end
106106
s
107107
end

test/perf/spell/perf.jl

+1-1
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ function spelltest(tests; bias=0, verbose=false)
9292
end
9393
end
9494

95-
return Dict("bad"=>bad, "n"=>n, "bias"=>bias, "pct"=>round(Int, 100. - 100.*bad/n),
95+
return Dict("bad"=>bad, "n"=>n, "bias"=>bias, "pct"=>round(Int, 100. - 100. * bad/n),
9696
"unknown"=>unknown, "secs"=>toc())
9797
end
9898

test/ranges.jl

+2-2
Original file line numberDiff line numberDiff line change
@@ -922,8 +922,8 @@ end
922922
@testset "logspace" begin
923923
n = 10; a = 2; b = 4
924924
# test default values; n = 50, base = 10
925-
@test logspace(a, b) == logspace(a, b, 50) == 10.^linspace(a, b, 50)
926-
@test logspace(a, b, n) == 10.^linspace(a, b, n)
925+
@test logspace(a, b) == logspace(a, b, 50) == 10 .^ linspace(a, b, 50)
926+
@test logspace(a, b, n) == 10 .^ linspace(a, b, n)
927927
for base in (10, 2, e)
928928
@test logspace(a, b, base=base) == logspace(a, b, 50, base=base) == base.^linspace(a, b, 50)
929929
@test logspace(a, b, n, base=base) == base.^linspace(a, b, n)

0 commit comments

Comments
 (0)