|
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, common_type, |
189 | | - diag, diag_indices, |
| 188 | + broadcast_to, byte_bounds, c_, column_stack, diag, diag_indices, |
190 | 189 | diag_indices_from, diagflat, dsplit, dstack, |
191 | 190 | ediff1d, emath, expand_dims, eye, fill_diagonal, fix, |
192 | 191 | fliplr, flipud, fromregex, get_array_wrap, genfromtxt, |
193 | | - get_include, histogram2d, |
194 | | - hsplit, imag, in1d, index_exp, info, intersect1d, iscomplex, |
195 | | - iscomplexobj, isin, isneginf, isreal, isrealobj, |
196 | | - ix_, kron, load, loadtxt, mask_indices, |
197 | | - mgrid, mintypecode, nan_to_num, ndenumerate, ndindex, ogrid, |
| 192 | + get_include, histogram2d, hsplit, in1d, index_exp, info, intersect1d, |
| 193 | + isin, isneginf, ix_, kron, load, loadtxt, mask_indices, |
| 194 | + mgrid, ndenumerate, ndindex, ogrid, |
198 | 195 | packbits, pad, poly, poly1d, polyadd, polyder, |
199 | 196 | polydiv, polyfit, polyint, polymul, polysub, polyval, |
200 | | - put_along_axis, r_, ravel_multi_index, real, real_if_close, |
| 197 | + put_along_axis, r_, ravel_multi_index, |
201 | 198 | roots, row_stack, s_, save, savetxt, savez, savez_compressed, |
202 | 199 | setdiff1d, setxor1d, show_runtime, split, |
203 | 200 | take_along_axis, tile, tri, tril, |
204 | | - tril_indices, tril_indices_from, typename, union1d, unique, unpackbits, |
| 201 | + tril_indices, tril_indices_from, union1d, unique, unpackbits, |
205 | 202 | unravel_index, vander, vsplit, triu, triu_indices, triu_indices_from, |
206 | 203 | isposinf |
207 | 204 | ) |
|
220 | 217 | corrcoef, median, sinc, hamming, hanning, bartlett, blackman, |
221 | 218 | kaiser, trapz, i0, meshgrid, delete, insert, append, interp, quantile |
222 | 219 | ) |
| 220 | + from .lib._type_check_impl import ( |
| 221 | + iscomplexobj, isrealobj, imag, iscomplex, isreal, nan_to_num, real, |
| 222 | + real_if_close, typename, mintypecode, common_type |
| 223 | + ) |
223 | 224 | from . import matrixlib as _mat |
224 | 225 | from .matrixlib import ( |
225 | 226 | asmatrix, bmat, matrix |
|
283 | 284 | set(_mat.__all__) | set(lib._histograms_impl.__all__) | |
284 | 285 | set(lib._nanfunctions_impl.__all__) | |
285 | 286 | set(lib._function_base_impl.__all__) | |
| 287 | + set(lib._type_check_impl.__all__) | |
286 | 288 | {"show_config", "__version__"} |
287 | 289 | ) |
288 | 290 |
|
|
0 commit comments