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

Function check_for_name

Tools/check-c-api-docs/main.py:87–92  ·  view source on GitHub ↗
(name: str)

Source from the content-addressed store, hash-verified

85 colors = _colorize.get_colors()
86
87 def check_for_name(name: str) -> None:
88 documented = name in names
89 if documented and (name in IGNORED):
90 documented_ignored.append(name)
91 elif not documented and (name not in IGNORED):
92 undocumented.append(name)
93
94 for function in SIMPLE_FUNCTION_REGEX.finditer(text):
95 name = function.group(2)

Callers 1

scan_file_for_docsFunction · 0.85

Calls 1

appendMethod · 0.45

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…