Skip to content

Commit e796e39

Browse files
m-j-wamitmurthy
authored andcommitted
Fix exports of undefined/missing/conditionally defined symbols (#21217)
* Remove Base.Parallel export. * Remove 'big_str' export from mpfr.jl * Remove 'dense' from export in sparse.jl
1 parent d3fe5f8 commit e796e39

File tree

3 files changed

+4
-5
lines changed

3 files changed

+4
-5
lines changed

base/exports.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ export
2323
Markdown,
2424
Threads,
2525
Iterators,
26-
Parallel,
26+
Distributed,
2727

2828
# Types
2929
AbstractChannel,
@@ -1344,7 +1344,7 @@ export
13441344
nzrange,
13451345
nnz,
13461346

1347-
# Parallel module re-exports
1347+
# Distributed module re-exports
13481348
@spawn,
13491349
@spawnat,
13501350
@fetch,

base/mpfr.jl

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,7 @@ module MPFR
44

55
export
66
BigFloat,
7-
setprecision,
8-
big_str
7+
setprecision
98

109
import
1110
Base: (*), +, -, /, <, <=, ==, >, >=, ^, ceil, cmp, convert, copysign, div,

base/sparse/sparse.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ import Base: @get!, acos, acosd, acot, acotd, acsch, asech, asin, asind, asinh,
2727
triu, vec, permute!, map, map!
2828

2929
export AbstractSparseArray, AbstractSparseMatrix, AbstractSparseVector,
30-
SparseMatrixCSC, SparseVector, blkdiag, dense, droptol!, dropzeros!, dropzeros,
30+
SparseMatrixCSC, SparseVector, blkdiag, droptol!, dropzeros!, dropzeros,
3131
issparse, nonzeros, nzrange, rowvals, sparse, sparsevec, spdiagm, speye, spones,
3232
sprand, sprandn, spzeros, nnz, permute
3333

0 commit comments

Comments
 (0)