view python/ppci/__init__.py @ 326:2fa27c44e3c9

Changed hasbang
author Windel Bouwman
date Sat, 01 Feb 2014 16:54:33 +0100
parents 2c9768114877
children a78b41ff6ad2
line wrap: on
line source

# File to make this directory a package.

import sys

version = '0.0.1'

# Assert python version:
if sys.version_info.major != 3:
   print("Needs to be run in python version 3.x")
   sys.exit(1)

from .common import SourceLocation, SourceRange, Token
from .common import CompilerError, DiagnosticsManager