MCPcopy Index your code
hub / github.com/pathwaycom/pathway / __repr__

Method __repr__

python/pathway/internals/table.py:2583–2588  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

2581 return cls(_columns=columns, _schema=schema, _context=context)
2582
2583 def __repr__(self) -> str:
2584 id_dtype = self._id_column.dtype
2585 if id_dtype == dt.ANY_POINTER:
2586 return f"<pathway.Table schema={dict(self.typehints())}>"
2587 else:
2588 return f"<pathway.Table schema={dict(self.typehints())} id_type={id_dtype.typehint}>"
2589
2590 def _with_same_universe(
2591 self,

Callers

nothing calls this directly

Calls 1

typehintsMethod · 0.95

Tested by

no test coverage detected