Name Date Size #Lines LOC

..13-Mar-2025-

clang/H13-Mar-2025-4,2802,903

examples/cindex/H13-Mar-2025-14593

tests/H13-Mar-2025-2,4811,905

README.txtH A D13-Mar-2025607 1915

README.txt

1//===----------------------------------------------------------------------===//
2// Clang Python Bindings
3//===----------------------------------------------------------------------===//
4
5This directory implements Python bindings for Clang.
6
7You may need to set CLANG_LIBRARY_PATH so that the Clang library can be
8found. The unit tests are designed to be run with any standard test
9runner. For example:
10--
11$ env PYTHONPATH=$(echo ~/llvm/tools/clang/bindings/python/) \
12      CLANG_LIBRARY_PATH=$(llvm-config --libdir) \
13  python -m unittest discover -v
14tests.cindex.test_index.test_create ... ok
15...
16
17OK
18--
19