|
183 | 183 |
|
184 | 184 | from . import lib
|
185 | 185 | from .lib import (
|
186 |
| - DataSource, apply_along_axis, apply_over_axes, |
187 |
| - array_split, c_, column_stack, diag_indices, |
188 |
| - diag_indices_from, dsplit, dstack, |
189 |
| - emath, expand_dims, fill_diagonal, |
190 |
| - fromregex, get_array_wrap, genfromtxt, |
191 |
| - hsplit, index_exp, ix_, kron, load, loadtxt, |
192 |
| - mgrid, ndenumerate, ndindex, ogrid, |
| 186 | + DataSource, c_, diag_indices, diag_indices_from, emath, |
| 187 | + fromregex, genfromtxt, index_exp, ix_, load, loadtxt, |
| 188 | + mgrid, ndenumerate, ndindex, ogrid, fill_diagonal, |
193 | 189 | packbits, poly, poly1d, polyadd, polyder,
|
194 | 190 | polydiv, polyfit, polyint, polymul, polysub, polyval,
|
195 |
| - put_along_axis, r_, ravel_multi_index, |
196 |
| - roots, row_stack, s_, save, savetxt, savez, |
197 |
| - savez_compressed, split, take_along_axis, tile, |
198 |
| - unpackbits, unravel_index, vsplit |
| 191 | + r_, ravel_multi_index, roots, s_, save, savetxt, savez, |
| 192 | + savez_compressed, unpackbits, unravel_index |
199 | 193 | )
|
200 | 194 | from .lib._histograms_impl import (
|
201 | 195 | histogram, histogram_bin_edges, histogramdd
|
|
217 | 211 | histogram2d, mask_indices, tril_indices, tril_indices_from,
|
218 | 212 | triu_indices, triu_indices_from
|
219 | 213 | )
|
| 214 | + from .lib._shape_base_impl import ( |
| 215 | + apply_over_axes, apply_along_axis, array_split, column_stack, dsplit, |
| 216 | + dstack, expand_dims, hsplit, kron, put_along_axis, row_stack, split, |
| 217 | + take_along_axis, tile, vsplit |
| 218 | + ) |
220 | 219 | from .lib._type_check_impl import (
|
221 | 220 | iscomplexobj, isrealobj, imag, iscomplex, isreal, nan_to_num, real,
|
222 | 221 | real_if_close, typename, mintypecode, common_type
|
|
296 | 295 | set(lib._nanfunctions_impl.__all__) |
|
297 | 296 | set(lib._function_base_impl.__all__) |
|
298 | 297 | set(lib._twodim_base_impl.__all__) |
|
| 298 | + set(lib._shape_base_impl.__all__) | |
299 | 299 | set(lib._type_check_impl.__all__) |
|
300 | 300 | set(lib._arraysetops_impl.__all__) |
|
301 | 301 | set(lib._ufunclike_impl.__all__) |
|
|
0 commit comments