本文整理汇总了Python中collections.abc.abc方法的典型用法代码示例。如果您正苦于以下问题:Python abc.abc方法的具体用法?Python abc.abc怎么用?Python abc.abc使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类collections.abc
的用法示例。
在下文中一共展示了abc.abc方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: _mark_docstring_sub_nodes
# 需要导入模块: from collections import abc [as 别名]
# 或者: from collections.abc import abc [as 别名]
def _mark_docstring_sub_nodes(node):
"""
Inspired by ast.get_docstring, mark all docstring sub nodes.
Case1:
regular docstring of function/class/module
Case2:
def foo(self):
'''pure string expression'''
for x in self.contents:
'''pure string expression'''
print x
if self.abc:
'''pure string expression'''
pass
Case3:
def foo(self):
if self.abc:
print('ok')
else:
'''pure string expression'''
pass
:param node: every ast node
:return:
"""
def _mark_docstring_nodes(body):
if body and isinstance(body, collections.Sequence):
for n in body:
if isinstance(n, ast.Expr) and isinstance(n.value, ast.Str):
n.is_docstring = True
node_body = getattr(node, 'body', None)
_mark_docstring_nodes(node_body)
node_orelse = getattr(node, 'orelse', None)
_mark_docstring_nodes(node_orelse)