MCPcopy Create free account
hub / github.com/RT-Thread/env-windows / ArgList

Function ArgList

tools/python-3.11.9-amd64/Lib/lib2to3/fixer_util.py:52–57  ·  view source on GitHub ↗

A parenthesised argument list, used by Call()

(args, lparen=LParen(), rparen=RParen())

Source from the content-addressed store, hash-verified

50 return Leaf(token.DOT, ".")
51
52def ArgList(args, lparen=LParen(), rparen=RParen()):
53 """A parenthesised argument list, used by Call()"""
54 node = Node(syms.trailer, [lparen.clone(), rparen.clone()])
55 if args:
56 node.insert_child(1, Node(syms.arglist, args))
57 return node
58
59def Call(func_name, args=None, prefix=None):
60 """A function call"""

Callers 7

CallFunction · 0.85
transformMethod · 0.85
transformMethod · 0.85
transformMethod · 0.85
transformMethod · 0.85
transformMethod · 0.85
transformMethod · 0.85

Calls 5

insert_childMethod · 0.95
LParenFunction · 0.85
RParenFunction · 0.85
NodeClass · 0.70
cloneMethod · 0.45

Tested by

no test coverage detected