├── .github └── workflows │ └── python-publish.yml ├── .gitignore ├── LICENSE ├── README.rst ├── examples └── tmp.py ├── pyproject.toml ├── requirements.txt └── uncalled ├── __init__.py ├── __main__.py ├── ast_finder.py ├── iterative.py ├── regex_finder.py ├── single_pass.py └── whitelist.py /.github/workflows/python-publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elazarg/uncalled/HEAD/.github/workflows/python-publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .idea/ 2 | __pycache__/ 3 | dist/ 4 | *.egg-info/ 5 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elazarg/uncalled/HEAD/LICENSE -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elazarg/uncalled/HEAD/README.rst -------------------------------------------------------------------------------- /examples/tmp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elazarg/uncalled/HEAD/examples/tmp.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elazarg/uncalled/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /uncalled/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /uncalled/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elazarg/uncalled/HEAD/uncalled/__main__.py -------------------------------------------------------------------------------- /uncalled/ast_finder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elazarg/uncalled/HEAD/uncalled/ast_finder.py -------------------------------------------------------------------------------- /uncalled/iterative.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elazarg/uncalled/HEAD/uncalled/iterative.py -------------------------------------------------------------------------------- /uncalled/regex_finder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elazarg/uncalled/HEAD/uncalled/regex_finder.py -------------------------------------------------------------------------------- /uncalled/single_pass.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elazarg/uncalled/HEAD/uncalled/single_pass.py -------------------------------------------------------------------------------- /uncalled/whitelist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elazarg/uncalled/HEAD/uncalled/whitelist.py --------------------------------------------------------------------------------