MCPcopy Index your code
hub / github.com/numpy/numpy / copy

Method copy

numpy/ma/mrecords.py:382–389  ·  view source on GitHub ↗

Returns a copy of the masked record.

(self)

Source from the content-addressed store, hash-verified

380 self._hardmask = False
381
382 def copy(self):
383 """
384 Returns a copy of the masked record.
385
386 """
387 copied = self._data.copy().view(type(self))
388 copied._mask = self._mask.copy()
389 return copied
390
391 def tolist(self, fill_value=None):
392 """

Callers

nothing calls this directly

Calls 1

viewMethod · 0.45

Tested by

no test coverage detected