__init__.py 594 B

1234567891011121314151617181920212223
  1. #===- __init__.py - Clang Python Bindings --------------------*- python -*--===#
  2. #
  3. # Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
  4. # See https://llvm.org/LICENSE.txt for license information.
  5. # SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
  6. #
  7. #===------------------------------------------------------------------------===#
  8. r"""
  9. Clang Library Bindings
  10. ======================
  11. This package provides access to the Clang compiler and libraries.
  12. The available modules are:
  13. cindex
  14. Bindings for the Clang indexing library.
  15. """
  16. __all__ = ['cindex']