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


Python symbol.with_stmt方法代碼示例

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


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

示例1: with_stmt

# 需要導入模塊: import symbol [as 別名]
# 或者: from symbol import with_stmt [as 別名]
def with_stmt(self, nodelist):
        return self.com_with(nodelist) 
開發者ID:IronLanguages,項目名稱:ironpython2,代碼行數:4,代碼來源:transformer.py

示例2: com_with

# 需要導入模塊: import symbol [as 別名]
# 或者: from symbol import with_stmt [as 別名]
def com_with(self, nodelist):
        # with_stmt: 'with' with_item (',' with_item)* ':' suite
        body = self.com_node(nodelist[-1])
        for i in range(len(nodelist) - 3, 0, -2):
            ret = self.com_with_item(nodelist[i], body, nodelist[0][2])
            if i == 1:
                return ret
            body = ret 
開發者ID:IronLanguages,項目名稱:ironpython2,代碼行數:10,代碼來源:transformer.py

示例3: _get_forbidden_symbols

# 需要導入模塊: import symbol [as 別名]
# 或者: from symbol import with_stmt [as 別名]
def _get_forbidden_symbols():
    """
    Returns a list of symbol codes representing statements that are *not*
    wanted in configuration files.
    """
    try:
        # Python 2.5:
        symlst = [symbol.break_stmt, symbol.classdef, symbol.continue_stmt,
                  symbol.decorator, symbol.decorators, symbol.eval_input,
                  symbol.except_clause, symbol.exec_stmt, symbol.flow_stmt,
                  symbol.for_stmt, symbol.fpdef, symbol.fplist, symbol.funcdef,
                  symbol.global_stmt, symbol.import_as_name, symbol.import_as_names,
                  symbol.import_from, symbol.import_name, symbol.import_stmt,
                  symbol.lambdef, symbol.old_lambdef, symbol.print_stmt,
                  symbol.raise_stmt, symbol.try_stmt, symbol.while_stmt,
                  symbol.with_stmt, symbol.with_var, symbol.yield_stmt,
                  symbol.yield_expr]
        
    except AttributeError:
        # Python 2.4:        
        symlst = [symbol.break_stmt, symbol.classdef, symbol.continue_stmt,
                  symbol.decorator, symbol.decorators, symbol.eval_input,
                  symbol.except_clause, symbol.exec_stmt, symbol.flow_stmt,
                  symbol.for_stmt, symbol.fpdef, symbol.fplist, symbol.funcdef,
                  symbol.global_stmt, symbol.import_as_name, symbol.import_as_names,
                  symbol.import_from, symbol.import_name, symbol.import_stmt,
                  symbol.lambdef, symbol.print_stmt, symbol.raise_stmt,
                  symbol.try_stmt, symbol.while_stmt]
    
    return symlst 
開發者ID:ActiveState,項目名稱:code,代碼行數:32,代碼來源:recipe-576404.py

示例4: com_with

# 需要導入模塊: import symbol [as 別名]
# 或者: from symbol import with_stmt [as 別名]
def com_with(self, nodelist):
        # with_stmt: 'with' expr [with_var] ':' suite
        expr = self.com_node(nodelist[1])
        body = self.com_node(nodelist[-1])
        if nodelist[2][0] == token.COLON:
            var = None
        else:
            var = self.com_assign(nodelist[2][2], OP_ASSIGN)
        return With(expr, var, body, lineno=nodelist[0][2]) 
開發者ID:ofermend,項目名稱:medicare-demo,代碼行數:11,代碼來源:transformer.py


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