8000 ENH: Add a new type of iterator generator, ndrange · numpy/numpy@23ffe4c · GitHub
[go: up one dir, main page]

Skip to content

Commit 23ffe4c

Browse files
committed
ENH: Add a new type of iterator generator, ndrange
1 parent 3aaef83 commit 23ffe4c

File tree

3 files changed

+660
-10
lines changed

3 files changed

+660
-10
lines changed

numpy/__init__.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -231,9 +231,9 @@
231231
savez_compressed, unpackbits, fromregex
232232
)
233233
from .lib._index_tricks_impl import (
234-
diag_indices_from, diag_indices, fill_diagonal, ndindex, ndenumerate,
235-
ix_, c_, r_, s_, ogrid, mgrid, unravel_index, ravel_multi_index,
236-
index_exp
234+
diag_indices_from, diag_indices, fill_diagonal, ndindex, ndrange,
235+
ndenumerate, ix_, c_, r_, s_, ogrid, mgrid, unravel_index,
236+
ravel_multi_index, index_exp
237237
)
238238

239239
from . import matrixlib as _mat

0 commit comments

Comments
 (0)
0