|
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, |
189 |
| - diag_indices_from, diagflat, dsplit, dstack, |
190 |
| - ediff1d, emath, expand_dims, eye, fill_diagonal, fix, |
| 188 | + broadcast_to, byte_bounds, column_stack, diag, |
| 189 | + diagflat, dsplit, dstack, ediff1d, emath, expand_dims, eye, fix, |
191 | 190 | 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, |
194 |
| - mgrid, ndenumerate, ndindex, ogrid, |
| 191 | + get_include, histogram2d, hsplit, in1d, info, intersect1d, |
| 192 | + isin, isneginf, kron, load, loadtxt, mask_indices, |
195 | 193 | packbits, pad, poly, poly1d, polyadd, polyder,
|
196 | 194 | polydiv, polyfit, polyint, polymul, polysub, polyval,
|
197 |
| - put_along_axis, r_, ravel_multi_index, |
198 |
| - roots, row_stack, s_, save, savetxt, savez, savez_compressed, |
| 195 | + put_along_axis, |
| 196 | + roots, row_stack, save, savetxt, savez, savez_compressed, |
199 | 197 | setdiff1d, setxor1d, show_runtime, split,
|
200 | 198 | take_along_axis, tile, tri, tril,
|
201 | 199 | tril_indices, tril_indices_from, union1d, unique, unpackbits,
|
202 |
| - unravel_index, vander, vsplit, triu, triu_indices, triu_indices_from, |
| 200 | + vander, vsplit, triu, triu_indices, triu_indices_from, |
203 | 201 | isposinf
|
204 | 202 | )
|
205 | 203 | from .lib._histograms_impl import (
|
|
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._index_tricks_impl import ( |
| 223 | + diag_indices_from, diag_indices, fill_diagonal, ndindex, ndenumerate, |
| 224 | + ix_, c_, r_, s_, ogrid, mgrid, unravel_index, ravel_multi_index, |
| 225 | + index_exp |
| 226 | + ) |
224 | 227 | from . import matrixlib as _mat
|
225 | 228 | from .matrixlib import (
|
226 | 229 | asmatrix, bmat, matrix
|
|
285 | 288 | set(lib._nanfunctions_impl.__all__) |
|
286 | 289 | set(lib._function_base_impl.__all__) |
|
287 | 290 | set(lib._type_check_impl.__all__) |
|
| 291 | + set(lib._index_tricks_impl.__all__) | |
288 | 292 | {"show_config", "__version__"}
|
289 | 293 | )
|
290 | 294 |
|
|
0 commit comments