MCPcopy Create free account
hub / github.com/IENT/YUView / parseHeader

Method parseHeader

tools/standardTextToCode/parseTables.py:270–278  ·  view source on GitHub ↗
(self, header)

Source from the content-addressed store, hash-verified

268 else:
269 self.parseChildren(table, 2, variableDescriptions)
270 def parseHeader(self, header):
271 header = header.replace(u'\xa0', u' ')
272 bracketOpen = header.find("(")
273 bracketClose = header.find(")")
274 self.name = header[:bracketOpen]
275 self.arguments = []
276 for a in header[bracketOpen+1 : bracketClose].split(","):
277 self.arguments.append(a.strip())
278 print(f"Table: {self.name}")
279
280class ContainerIf(Container):
281 def __init__(self, parent):

Callers 1

parseContainerMethod · 0.95

Calls 1

appendMethod · 0.80

Tested by

no test coverage detected