xref: /openbsd-src/gnu/llvm/libcxx/utils/libcxx/__init__.py (revision 46035553bfdd96e63c94e32da0210227ec2e3cf1)
1*46035553Spatrick#===----------------------------------------------------------------------===##
2*46035553Spatrick#
3*46035553Spatrick# Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4*46035553Spatrick# See https://llvm.org/LICENSE.txt for license information.
5*46035553Spatrick# SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6*46035553Spatrick#
7*46035553Spatrick#===----------------------------------------------------------------------===##
8*46035553Spatrick
9*46035553Spatrick"""libcxx python utilities"""
10*46035553Spatrick
11*46035553Spatrick__author__ = 'Eric Fiselier'
12*46035553Spatrick__email__ = 'eric@efcs.ca'
13*46035553Spatrick__versioninfo__ = (0, 1, 0)
14*46035553Spatrick__version__ = ' '.join(str(v) for v in __versioninfo__) + 'dev'
15*46035553Spatrick
16*46035553Spatrick__all__ = []
17