本文整理汇总了Python中fit.Parse.Parse.body方法的典型用法代码示例。如果您正苦于以下问题:Python Parse.body方法的具体用法?Python Parse.body怎么用?Python Parse.body使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类fit.Parse.Parse
的用法示例。
在下文中一共展示了Parse.body方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: buildSurplusCells
# 需要导入模块: from fit.Parse import Parse [as 别名]
# 或者: from fit.Parse.Parse import body [as 别名]
def buildSurplusCells(self, adapters, objectOrDict):
root = Parse(tag="xx")
next = root
for adapter, name, symbols in adapters:
hasKey, obj = self._getObj(name, objectOrDict)
cell = Parse(tag="td")
if hasKey:
cell.body = adapter.toString(obj)
else:
self.exception(cell, "attribute missing")
next.more = cell
next = cell
return root.more
示例2: _makeCell
# 需要导入模块: from fit.Parse import Parse [as 别名]
# 或者: from fit.Parse.Parse import body [as 别名]
def _makeCell(self, anObject):
aCell = Parse(tag="td")
try:
aCell.body = self._typeAdapter.toString(anObject, aCell)
except Exception, e:
self.exception(aCell, e)
示例3: testBlankCellHandlerParseWithCell
# 需要导入模块: from fit.Parse import Parse [as 别名]
# 或者: from fit.Parse.Parse import body [as 别名]
def testBlankCellHandlerParseWithCell(self):
h = BlankCellHandler()
cell = Parse(tag="td", body="blank")
assert h.parse(cell, None) == (OK, "")
cell.body = "fubar"
assert h.parse(cell, None) == (NEXT, None)
示例4: CellOutput
# 需要导入模块: from fit.Parse import Parse [as 别名]
# 或者: from fit.Parse.Parse import body [as 别名]
def CellOutput(self):
cell = Parse(tag="td")
cell.leader = ""
cell.body = Fixture.escape(self, self._unescape(self.Text))
return self._GenerateOutput(cell)