Scarab
v2.9.1
Project 8 C++ Utility Library
library
external
pybind11
tools
clang
tools/clang/__init__.py
Go to the documentation of this file.
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
Generated by
1.8.13