Pathnames of unaligned, *unidimensional* columns.
(self)
| 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 |
nothing calls this directly
no test coverage detected