51 lines
1.7 KiB
Python
51 lines
1.7 KiB
Python
#
|
|
# Copyright (c) 2012, Canonical Ltd
|
|
#
|
|
# This program is free software: you can redistribute it and/or modify
|
|
# it under the terms of the GNU Lesser General Public License as published by
|
|
# the Free Software Foundation, version 3 only.
|
|
#
|
|
# This program is distributed in the hope that it will be useful,
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
# GNU Lesser General Public License for more details.
|
|
#
|
|
# You should have received a copy of the GNU Lesser General Public License
|
|
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
# GNU Lesser General Public License version 3 (see the file LICENSE).
|
|
|
|
|
|
# same format as sys.version_info: "A tuple containing the five components of
|
|
# the version number: major, minor, micro, releaselevel, and serial. All
|
|
# values except releaselevel are integers; the release level is 'alpha',
|
|
# 'beta', 'candidate', or 'final'. The version_info value corresponding to the
|
|
# Python version 2.0 is (2, 0, 0, 'final', 0)." Additionally we use a
|
|
# releaselevel of 'dev' for unreleased under-development code.
|
|
#
|
|
# If the releaselevel is 'alpha' then the major/minor/micro components are not
|
|
# established at this point, and setup.py will use a version of next-$(revno).
|
|
# If the releaselevel is 'final', then the tarball will be major.minor.micro.
|
|
# Otherwise it is major.minor.micro~$(revno).
|
|
|
|
from ._compiler import (
|
|
Compiler,
|
|
strlist,
|
|
Scope,
|
|
PybarsError
|
|
)
|
|
|
|
__version__ = '0.9.7'
|
|
__version_info__ = (0, 9, 7, 'final', 0)
|
|
|
|
__all__ = [
|
|
'Compiler',
|
|
'log',
|
|
'strlist',
|
|
'Scope',
|
|
'PybarsError'
|
|
]
|
|
|
|
|
|
def log(value):
|
|
return None
|