MCPcopy Create free account
hub / github.com/PyTables/PyTables / _colunaligned

Method _colunaligned

tables/table.py:605–612  ·  view source on GitHub ↗

Pathnames of unaligned, *unidimensional* columns.

(self)

Source from the content-addressed store, hash-verified

603
604 @lazyattr
605 def _colunaligned(self) -> frozenset:
606 """Pathnames of unaligned, *unidimensional* columns."""
607 colunaligned, rarr = [], self._get_container(0)
608 for colpathname in self.colpathnames:
609 carr = get_nested_field(rarr, colpathname)
610 if not carr.flags.aligned and carr.ndim == 1:
611 colunaligned.append(colpathname)
612 return frozenset(colunaligned)
613
614 # **************** WARNING! ***********************
615 # This function can be called during the destruction time of a table

Callers

nothing calls this directly

Calls 2

_get_containerMethod · 0.95
appendMethod · 0.45

Tested by

no test coverage detected