MCPcopy
hub / github.com/pandas-dev/pandas / _find_names

Function _find_names

scripts/check_test_naming.py:30–35  ·  view source on GitHub ↗
(node: ast.Module)

Source from the content-addressed store, hash-verified

28
29
30def _find_names(node: ast.Module) -> Iterator[str]:
31 for _node in ast.walk(node):
32 if isinstance(_node, ast.Name):
33 yield _node.id
34 elif isinstance(_node, ast.Attribute):
35 yield _node.attr
36
37
38def _is_fixture(node: ast.expr) -> bool:

Callers 1

mainFunction · 0.85

Calls 1

walkMethod · 0.80

Tested by

no test coverage detected