|
185 | 185 | from .lib import (
|
186 | 186 | DataSource, apply_along_axis, apply_over_axes,
|
187 | 187 | array_split, broadcast_arrays, broadcast_shapes,
|
188 |
| - broadcast_to, byte_bounds, c_, column_stack, diag, diag_indices, |
| 188 | + broadcast_to, c_, column_stack, diag, diag_indices, |
189 | 189 | diag_indices_from, diagflat, dsplit, dstack,
|
190 |
| - ediff1d, emath, expand_dims, eye, fill_diagonal, fix, |
| 190 | + emath, expand_dims, eye, fill_diagonal, |
191 | 191 | fliplr, flipud, fromregex, get_array_wrap, genfromtxt,
|
192 |
| - get_include, histogram2d, hsplit, in1d, index_exp, info, intersect1d, |
193 |
| - isin, isneginf, ix_, kron, load, loadtxt, mask_indices, |
| 192 | + histogram2d, hsplit, index_exp, |
| 193 | + ix_, kron, load, loadtxt, mask_indices, |
194 | 194 | mgrid, ndenumerate, ndindex, ogrid,
|
195 |
| - packbits, pad, poly, poly1d, polyadd, polyder, |
| 195 | + packbits, poly, poly1d, polyadd, polyder, |
196 | 196 | polydiv, polyfit, polyint, polymul, polysub, polyval,
|
197 | 197 | put_along_axis, r_, ravel_multi_index,
|
198 | 198 | roots, row_stack, s_, save, savetxt, savez, savez_compressed,
|
199 |
| - setdiff1d, setxor1d, show_runtime, split, |
200 |
| - take_along_axis, tile, tri, tril, |
201 |
| - tril_indices, tril_indices_from, union1d, unique, unpackbits, |
202 |
| - unravel_index, vander, vsplit, triu, triu_indices, triu_indices_from, |
203 |
| - isposinf |
| 199 | + split, take_along_axis, tile, tri, tril, |
| 200 | + tril_indices, tril_indices_from, unpackbits, |
| 201 | + unravel_index, vander, vsplit, triu, triu_indices, triu_indices_from |
204 | 202 | )
|
205 | 203 | from .lib._histograms_impl import (
|
206 | 204 | histogram, histogram_bin_edges, histogramdd
|
|
221 | 219 | iscomplexobj, isrealobj, imag, iscomplex, isreal, nan_to_num, real,
|
222 | 220 | real_if_close, typename, mintypecode, common_type
|
223 | 221 | )
|
| 222 | + from .lib._arraysetops_impl import ( |
| 223 | + ediff1d, in1d, intersect1d, isin, setdiff1d, setxor1d, union1d, unique |
| 224 | + ) |
| 225 | + from .lib._ufunclike_impl import fix, isneginf, isposinf |
| 226 | + from .lib._arraypad_impl import pad |
| 227 | + from .lib._utils_impl import ( |
| 228 | + byte_bounds, show_runtime, get_include, info |
| 229 | + ) |
224 | 230 | from . import matrixlib as _mat
|
225 | 231 | from .matrixlib import (
|
226 | 232 | asmatrix, bmat, matrix
|
|
285 | 291 | set(lib._nanfunctions_impl.__all__) |
|
286 | 292 | set(lib._function_base_impl.__all__) |
|
287 | 293 | set(lib._type_check_impl.__all__) |
|
| 294 | + set(lib._arraysetops_impl.__all__) | |
| 295 | + set(lib._ufunclike_impl.__all__) | |
| 296 | + set(lib._arraypad_impl.__all__) | |
| 297 | + set(lib._utils_impl.__all__) | |
288 | 298 | {"show_config", "__version__"}
|
289 | 299 | )
|
290 | 300 |
|
|
0 commit comments