MCPcopy Index your code
hub / github.com/python/cpython / parse_name

Function parse_name

Lib/inspect.py:2187–2191  ·  view source on GitHub ↗
(node)

Source from the content-addressed store, hash-verified

2185 sys_module_dict = sys.modules.copy()
2186
2187 def parse_name(node):
2188 assert isinstance(node, ast.arg)
2189 if node.annotation is not None:
2190 raise ValueError("Annotations are not currently supported")
2191 return node.arg
2192
2193 def wrap_value(s):
2194 try:

Callers 1

pFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…