當前位置: 首頁>>代碼示例>>Python>>正文


Python _ast.ClassDef方法代碼示例

本文整理匯總了Python中_ast.ClassDef方法的典型用法代碼示例。如果您正苦於以下問題:Python _ast.ClassDef方法的具體用法?Python _ast.ClassDef怎麽用?Python _ast.ClassDef使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在_ast的用法示例。


在下文中一共展示了_ast.ClassDef方法的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。

示例1: CONTINUE

# 需要導入模塊: import _ast [as 別名]
# 或者: from _ast import ClassDef [as 別名]
def CONTINUE(self, node):
        # Walk the tree up until we see a loop (OK), a function or class
        # definition (not OK), for 'continue', a finally block (not OK), or
        # the top module scope (not OK)
        n = node
        while hasattr(n, 'parent'):
            n, n_child = n.parent, n
            if isinstance(n, LOOP_TYPES):
                # Doesn't apply unless it's in the loop itself
                if n_child not in n.orelse:
                    return
            if isinstance(n, (ast.FunctionDef, ast.ClassDef)):
                break
            # Handle Try/TryFinally difference in Python < and >= 3.3
            if hasattr(n, 'finalbody') and isinstance(node, ast.Continue):
                if n_child in n.finalbody:
                    self.report(messages.ContinueInFinally, node)
                    return
        if isinstance(node, ast.Continue):
            self.report(messages.ContinueOutsideLoop, node)
        else:  # ast.Break
            self.report(messages.BreakOutsideLoop, node) 
開發者ID:zrzka,項目名稱:blackmamba,代碼行數:24,代碼來源:checker.py

示例2: visit_classdef

# 需要導入模塊: import _ast [as 別名]
# 或者: from _ast import ClassDef [as 別名]
def visit_classdef(self, node: _ast.ClassDef):
        raise BadSyntax('Defining new class via def syntax is not allowed') 
開發者ID:item4,項目名稱:yui,代碼行數:4,代碼來源:calc.py

示例3: get_content

# 需要導入模塊: import _ast [as 別名]
# 或者: from _ast import ClassDef [as 別名]
def get_content(filename=None):
    """
    get_content generates sections or examples out of the given file path.
    """
    log.info("Parsing content.")
    if filename is None:
        filename = CONTENT_MODULE_PATH
    with open(str(filename), encoding='utf-8') as fp:
        source = fp.read()
        module = ast.parse(source)
        for node in module.body:
            if isinstance(node, _ast.FunctionDef) and node.name.startswith('test_'):
                yield parse_function(node)
            if isinstance(node, _ast.ClassDef) and node.name.startswith('Test'):
                yield parse_class(node) 
開發者ID:ulope,項目名稱:pyformat.info,代碼行數:17,代碼來源:main.py


注:本文中的_ast.ClassDef方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。