本文整理匯總了Python中symbol.dotted_name方法的典型用法代碼示例。如果您正苦於以下問題:Python symbol.dotted_name方法的具體用法?Python symbol.dotted_name怎麽用?Python symbol.dotted_name使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類symbol
的用法示例。
在下文中一共展示了symbol.dotted_name方法的5個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。
示例1: decorator
# 需要導入模塊: import symbol [as 別名]
# 或者: from symbol import dotted_name [as 別名]
def decorator(self, nodelist):
# '@' dotted_name [ '(' [arglist] ')' ]
assert len(nodelist) in (3, 5, 6)
assert nodelist[0][0] == token.AT
assert nodelist[-1][0] == token.NEWLINE
assert nodelist[1][0] == symbol.dotted_name
funcname = self.decorator_name(nodelist[1][1:])
if len(nodelist) > 3:
assert nodelist[2][0] == token.LPAR
expr = self.com_call_function(funcname, nodelist[3])
else:
expr = funcname
return expr
示例2: import_from
# 需要導入模塊: import symbol [as 別名]
# 或者: from symbol import dotted_name [as 別名]
def import_from(self, nodelist):
# import_from: 'from' ('.'* dotted_name | '.') 'import' ('*' |
# '(' import_as_names ')' | import_as_names)
assert nodelist[0][1] == 'from'
idx = 1
while nodelist[idx][1] == '.':
idx += 1
level = idx - 1
if nodelist[idx][0] == symbol.dotted_name:
fromname = self.com_dotted_name(nodelist[idx])
idx += 1
else:
fromname = ""
assert nodelist[idx][1] == 'import'
if nodelist[idx + 1][0] == token.STAR:
return From(fromname, [('*', None)], level,
lineno=nodelist[0][2])
else:
node = nodelist[idx + 1 + (nodelist[idx + 1][0] == token.LPAR)]
return From(fromname, self.com_import_as_names(node), level,
lineno=nodelist[0][2])
示例3: dotted_name
# 需要導入模塊: import symbol [as 別名]
# 或者: from symbol import dotted_name [as 別名]
def dotted_name(self, nodelist):
raise WalkerError
示例4: Annotate
# 需要導入模塊: import symbol [as 別名]
# 或者: from symbol import dotted_name [as 別名]
def Annotate(cls, symbol_type, children):
if symbol_type != symbol.dotted_name:
return None
return cls(symbol_type, children)
示例5: root
# 需要導入模塊: import symbol [as 別名]
# 或者: from symbol import dotted_name [as 別名]
def root(self):
return self.FindChild(symbol.dotted_name).value