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

Class _ColIndexes

tables/table.py:375–381  ·  view source on GitHub ↗

Provide a nice representation of column indexes.

Source from the content-addressed store, hash-verified

373
374
375class _ColIndexes(dict):
376 """Provide a nice representation of column indexes."""
377
378 def __repr__(self) -> str:
379 """Return a detailed Description column representation."""
380 rep = [f' "{k}": {v}' for k, v in self.items()]
381 return "{\n %s}" % (",\n ".join(rep))
382
383
384class Table(tableextension.Table, Leaf):

Callers 2

colindexesMethod · 0.85
__repr__Method · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected