|
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_indices, |
| 188 | + broadcast_to, c_, column_stack, diag_indices, |
189 | 189 | diag_indices_from, dsplit, dstack,
|
190 |
| - ediff1d, emath, expand_dims, fill_diagonal, fix, |
| 190 | + emath, expand_dims, fill_diagonal, |
191 | 191 | fromregex, get_array_wrap, genfromtxt,
|
192 |
| - get_include, hsplit, in1d, index_exp, info, intersect1d, |
193 |
| - isin, isneginf, ix_, kron, load, loadtxt, |
| 192 | + hsplit, index_exp, ix_, kron, load, loadtxt, |
194 | 193 | mgrid, ndenumerate, ndindex, ogrid,
|
195 |
| - packbits, pad, poly, poly1d, polyadd, polyder, |
| 194 | + packbits, poly, poly1d, polyadd, polyder, |
196 | 195 | polydiv, polyfit, polyint, polymul, polysub, polyval,
|
197 | 196 | put_along_axis, r_, ravel_multi_index,
|
198 |
| - roots, row_stack, s_, save, savetxt, savez, savez_compressed, |
199 |
| - setdiff1d, setxor1d, show_runtime, split, |
200 |
| - take_along_axis, tile, union1d, unique, unpackbits, |
201 |
| - unravel_index, vsplit, isposinf |
| 197 | + roots, row_stack, s_, save, savetxt, savez, |
| 198 | + savez_compressed, split, take_along_axis, tile, |
| 199 | + unpackbits, unravel_index, vsplit |
202 | 200 | )
|
203 | 201 | from .lib._histograms_impl import (
|
204 | 202 | histogram, histogram_bin_edges, histogramdd
|
|
224 | 222 | iscomplexobj, isrealobj, imag, iscomplex, isreal, nan_to_num, real,
|
225 | 223 | real_if_close, typename, mintypecode, common_type
|
226 | 224 | )
|
| 225 | + from .lib._arraysetops_impl import ( |
| 226 | + ediff1d, in1d, intersect1d, isin, setdiff1d, setxor1d, union1d, unique |
| 227 | + ) |
| 228 | + from .lib._ufunclike_impl import fix, isneginf, isposinf |
| 229 | + from .lib._arraypad_impl import pad |
| 230 | + from .lib._utils_impl import ( |
| 231 | + byte_bounds, show_runtime, get_include, info |
| 232 | + ) |
227 | 233 | from . import matrixlib as _mat
|
228 | 234 | from .matrixlib import (
|
229 | 235 | asmatrix, bmat, matrix
|
|
289 | 295 | set(lib._function_base_impl.__all__) |
|
290 | 296 | set(lib._twodim_base_impl.__all__) |
|
291 | 297 | set(lib._type_check_impl.__all__) |
|
| 298 | + set(lib._arraysetops_impl.__all__) | |
| 299 | + set(lib._ufunclike_impl.__all__) | |
| 300 | + set(lib._arraypad_impl.__all__) | |
| 301 | + set(lib._utils_impl.__all__) | |
292 | 302 | {"show_config", "__version__"}
|
293 | 303 | )
|
294 | 304 |
|
|
0 commit comments