当越界索引在np数组中时,为什么python numpy.delete不会引发indexError

mar*_*ram 8 python numpy list

使用np.delete时,如果使用越界索引,则会引发indexError.当一个越界索引在使用的np.array中并且该数组用作np.delete中的参数时,为什么这不会引发indexError?

np.delete(np.array([0, 2, 4, 5, 6, 7, 8, 9]), 9)
Run Code Online (Sandbox Code Playgroud)

这给了索引错误,因为它应该(索引9超出范围)

np.delete(np.arange(0,5), np.array([9]))
Run Code Online (Sandbox Code Playgroud)

np.delete(np.arange(0,5), (9,))
Run Code Online (Sandbox Code Playgroud)

给:

array([0, 1, 2, 3, 4])
Run Code Online (Sandbox Code Playgroud)

M4r*_*ini 7

这是一个已知的"功能",将在以后的版本中弃用.

从numpy的来源:

# Test if there are out of bound indices, this is deprecated
inside_bounds = (obj < N) & (obj >= -N)
if not inside_bounds.all():
    # 2013-09-24, 1.9
    warnings.warn(
        "in the future out of bounds indices will raise an error "
        "instead of being ignored by `numpy.delete`.",
        DeprecationWarning)
    obj = obj[inside_bounds]
Run Code Online (Sandbox Code Playgroud)

在python中启用DeprecationWarning实际上会显示此警告.参考

In [1]: import warnings

In [2]: warnings.simplefilter('always', DeprecationWarning)

In [3]: warnings.warn('test', DeprecationWarning)
C:\Users\u31492\AppData\Local\Continuum\Anaconda\Scripts\ipython-script.py:1: De
precationWarning: test
  if __name__ == '__main__':

In [4]: import numpy as np

In [5]: np.delete(np.arange(0,5), np.array([9]))
C:\Users\u31492\AppData\Local\Continuum\Anaconda\lib\site-packages\numpy\lib\fun
ction_base.py:3869: DeprecationWarning: in the future out of bounds indices will
 raise an error instead of being ignored by `numpy.delete`.
  DeprecationWarning)
Out[5]: array([0, 1, 2, 3, 4])
Run Code Online (Sandbox Code Playgroud)