|
189 | 189 | from . import lib |
190 | 190 | from .lib import ( |
191 | 191 | DataSource, angle, append, apply_along_axis, apply_over_axes, |
192 | | - array_split, asarray_chkfinite, asfarray, average, bartlett, |
| 192 | + array_split, asarray_chkfinite, average, bartlett, |
193 | 193 | bincount, blackman, broadcast_arrays, broadcast_shapes, |
194 | | - broadcast_to, byte_bounds, c_, column_stack, common_type, |
| 194 | + broadcast_to, byte_bounds, c_, column_stack, |
195 | 195 | copy, corrcoef, cov, delete, diag, diag_indices, |
196 | 196 | diag_indices_from, diagflat, diff, digitize, dsplit, dstack, |
197 | 197 | ediff1d, emath, expand_dims, extract, eye, fill_diagonal, fix, |
198 | 198 | flip, fliplr, flipud, fromregex, get_array_wrap, genfromtxt, |
199 | 199 | get_include, gradient, hamming, hanning, histogram2d, |
200 | | - hsplit, i0, imag, in1d, |
201 | | - index_exp, info, insert, interp, intersect1d, iscomplex, |
202 | | - iscomplexobj, isin, isneginf, isreal, isrealobj, issubclass_, |
| 200 | + hsplit, i0, in1d, |
| 201 | + index_exp, info, insert, interp, intersect1d, |
| 202 | + isin, isneginf, issubclass_, |
203 | 203 | issubsctype, iterable, ix_, kaiser, kron, load, loadtxt, mask_indices, |
204 | | - median, meshgrid, mgrid, mintypecode, nan_to_num, |
| 204 | + median, meshgrid, mgrid, |
205 | 205 | nanargmax, nanargmin, nancumprod, nancumsum, nanmax, nanmean, |
206 | 206 | nanmedian, nanmin, nanpercentile, nanprod, nanquantile, nanstd, |
207 | 207 | nansum, nanvar, ndenumerate, ndindex, ogrid, packbits, pad, |
208 | 208 | percentile, piecewise, place, poly, poly1d, polyadd, polyder, |
209 | 209 | polydiv, polyfit, polyint, polymul, polysub, polyval, |
210 | | - put_along_axis, quantile, r_, ravel_multi_index, real, real_if_close, |
| 210 | + put_along_axis, quantile, r_, ravel_multi_index, |
211 | 211 | roots, rot90, row_stack, s_, save, savetxt, savez, savez_compressed, |
212 | 212 | select, setdiff1d, setxor1d, show_runtime, sinc, sort_complex, split, |
213 | 213 | take_along_axis, tile, tracemalloc_domain, trapz, tri, tril, |
214 | | - tril_indices, tril_indices_from, typename, union1d, unique, unpackbits, |
| 214 | + tril_indices, tril_indices_from, union1d, unique, unpackbits, |
215 | 215 | unravel_index, unwrap, vander, vectorize, vsplit, trim_zeros, |
216 | 216 | triu, triu_indices, triu_indices_from, isposinf, disp, |
217 | 217 | deprecate, deprecate_with_doc, safe_eval, recfromtxt, recfromcsv |
218 | 218 | ) |
219 | 219 | from .lib._histograms_impl import ( |
220 | 220 | histogram, histogram_bin_edges, histogramdd |
221 | 221 | ) |
| 222 | + from .lib._type_check_impl import ( |
| 223 | + asfarray, iscomplexobj, isrealobj, imag, iscomplex, isreal, |
| 224 | + nan_to_num, real, real_if_close, typename, mintypecode, common_type |
| 225 | + ) |
222 | 226 | from . import matrixlib as _mat |
223 | 227 | from .matrixlib import ( |
224 | 228 | asmatrix, bmat, mat, matrix |
|
279 | 283 |
|
280 | 284 | __all__ = list( |
281 | 285 | __numpy_submodules__ | set(core.__all__) | set(lib.__all__) | |
282 | | - set(_mat.__all__) | set(lib._histograms_impl.__all__) | |
| 286 | + set(_mat.__all__) | set(lib._histograms_impl.__all__) | |
| 287 | + set(lib._type_check_impl.__all__) | |
283 | 288 | {"show_config", "__version__"} |
284 | 289 | ) |
285 | 290 |
|
|
0 commit comments