File tree 2 files changed +9
-0
lines changed
2 files changed +9
-0
lines changed Original file line number Diff line number Diff line change @@ -701,4 +701,9 @@ if VERSION < v"0.5.0-dev+431"
701
701
end
702
702
end
703
703
704
+ if VERSION < v " 0.5.0-dev+763"
705
+ export SparseArrays
706
+ const SparseArrays = Base. SparseMatrix
707
+ end
708
+
704
709
end # module
Original file line number Diff line number Diff line change @@ -529,6 +529,7 @@ f141(::Type{TCPSocket}) = true
529
529
@test f141 (OutOfMemoryError)
530
530
@test f141 (Base64EncodePipe)
531
531
@test f141 (UDPSocket)
532
+ @test f141 (TCPSocket)
532
533
533
534
# Union syntax
534
535
if VERSION < v " 0.4.0-dev+5379"
541
542
@test remotecall_fetch (() -> true , 1 )
542
543
@test fetch (remotecall_wait (() -> true , 1 ))
543
544
Base. remote_do (() -> true , 1 ) # Doesn't return anything so cannot be `@test`ed but should print some output if it fails
545
+
546
+ # JuliaLang/julia#13440
547
+ @test isa (SparseArrays, Module)
You can’t perform that action at this time.
0 commit comments