本文整理汇总了Python中orgmode.liborgmode.base.MultiPurposeList.append方法的典型用法代码示例。如果您正苦于以下问题:Python MultiPurposeList.append方法的具体用法?Python MultiPurposeList.append怎么用?Python MultiPurposeList.append使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类orgmode.liborgmode.base.MultiPurposeList
的用法示例。
在下文中一共展示了MultiPurposeList.append方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: append
# 需要导入模块: from orgmode.liborgmode.base import MultiPurposeList [as 别名]
# 或者: from orgmode.liborgmode.base.MultiPurposeList import append [as 别名]
def append(self, item, taint=True):
if not self.__class__.is_heading(item):
raise ValueError(u"Item is not a heading!")
if item in self:
raise ValueError(u"Heading is already part of this list!")
self._associate_heading(item, self[-1] if len(self) > 0 else None, None, taint=taint)
MultiPurposeList.append(self, item)
示例2: append
# 需要导入模块: from orgmode.liborgmode.base import MultiPurposeList [as 别名]
# 或者: from orgmode.liborgmode.base.MultiPurposeList import append [as 别名]
def append(self, item, taint=True):
if not self.__class__.is_domobj(item):
raise ValueError(u'Item is not a heading!')
if item in self:
raise ValueError(u'Heading is already part of this list!')
# self._associate_domobj(
# item, self[-1] if len(self) > 0 else None,
# None, taint=taint)
MultiPurposeList.append(self, item)