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

Method colindexes

tables/table.py:678–684  ·  view source on GitHub ↗

Return a dictionary with the indexes of the indexed columns.

(self)

Source from the content-addressed store, hash-verified

676
677 @property
678 def colindexes(self) -> _ColIndexes:
679 """Return a dictionary with the indexes of the indexed columns."""
680 return _ColIndexes(
681 (_colpname, self.cols._f_col(_colpname).index)
682 for _colpname in self.colpathnames
683 if self.colindexed[_colpname]
684 )
685
686 @property
687 def _dirtyindexes(self) -> bool:

Callers

nothing calls this directly

Calls 2

_ColIndexesClass · 0.85
_f_colMethod · 0.80

Tested by

no test coverage detected