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


Python token.EQUAL屬性代碼示例

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


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

示例1: gen_params

# 需要導入模塊: from lib2to3.fixer_util import token [as 別名]
# 或者: from lib2to3.fixer_util.token import EQUAL [as 別名]
def gen_params(raw_params):
    u"""
    Generator that yields tuples of (name, default_value) for each parameter in the list
    If no default is given, then it is default_value is None (not Leaf(token.NAME, 'None'))
    """
    assert raw_params[0].type == token.STAR and len(raw_params) > 2
    curr_idx = 2 # the first place a keyword-only parameter name can be is index 2
    max_idx = len(raw_params)
    while curr_idx < max_idx:
        curr_item = raw_params[curr_idx]
        prev_item = curr_item.prev_sibling
        if curr_item.type != token.NAME:
            curr_idx += 1
            continue
        if prev_item is not None and prev_item.type == token.DOUBLESTAR:
            break
        name = curr_item.value
        nxt = curr_item.next_sibling
        if nxt is not None and nxt.type == token.EQUAL:
            default_value = nxt.next_sibling
            curr_idx += 2
        else:
            default_value = None
        yield (name, default_value)
        curr_idx += 1 
開發者ID:remg427,項目名稱:misp42splunk,代碼行數:27,代碼來源:fix_kwargs.py


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