class _CopyMode(enum.Enum):
An enumeration for the copy modes supported by numpy.copy() and numpy.array(). The following three modes are supported,
ValueError
will be
raised.Note that the buffer-protocol could in theory do copies. NumPy currently assumes an object exporting the buffer protocol will never do this.
Constant | ALWAYS |
Undocumented |
Constant | IF​_NEEDED |
Undocumented |
Constant | NEVER |
Undocumented |
Method | __bool__ |
Undocumented |