Code
Hub
Workspaces
Following
Digest
Agents
Trending
Connect
MCP
copy
Index your code
hub
/
github.com/dabeaz-course/python-mastery
/ row
Method
row
Solutions/8_3/tableformat.py:52–54 ·
view source on GitHub ↗
(self, rowdata)
Source
from the content-addressed store, hash-verified
50
class
ColumnFormatMixin:
51
formats = []
52
def
row(self, rowdata):
53
rowdata = [ (fmt % item)
for
fmt, item in zip(self.formats, rowdata)]
54
super().row(rowdata)
55
56
class
UpperHeadersMixin:
57
def
headings(self, headers):
Callers
nothing calls this directly
Calls
1
row
Method · 0.45
Tested by
no test coverage detected