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

Function anonymous_names

Tools/c-analyzer/c_parser/parser/__init__.py:138–145  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

136
137
138def anonymous_names():
139 counter = 1
140 def anon_name(prefix='anon-'):
141 nonlocal counter
142 name = f'{prefix}{counter}'
143 counter += 1
144 return name
145 return anon_name
146
147
148#############################

Callers 1

parseFunction · 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…