Home | History | Annotate | Download | only in clang
      1 #===- __init__.py - Clang Python Bindings --------------------*- python -*--===#
      2 #
      3 #                     The LLVM Compiler Infrastructure
      4 #
      5 # This file is distributed under the University of Illinois Open Source
      6 # License. See LICENSE.TXT for details.
      7 #
      8 #===------------------------------------------------------------------------===#
      9 
     10 r"""
     11 Clang Library Bindings
     12 ======================
     13 
     14 This package provides access to the Clang compiler and libraries.
     15 
     16 The available modules are:
     17 
     18   cindex
     19 
     20     Bindings for the Clang indexing library.
     21 """
     22 
     23 __all__ = ['cindex']
     24 
     25