File: __init__.py

package info (click to toggle)
pcbasic 2.0.3-4
  • links: PTS
  • area: main
  • in suites: bullseye
  • size: 33,268 kB
  • sloc: python: 27,401; sh: 45; makefile: 13
file content (14 lines) | stat: -rw-r--r-- 395 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
"""
PC-BASIC - GW-BASIC/BASICA/Cartridge BASIC compatible interpreter

(c) 2013--2020 Rob Hagemans
This file is released under the GNU GPL version 3 or later.
"""

from .data import NAME, VERSION, LONG_VERSION, AUTHOR, COPYRIGHT
from .api import Session, codepage, font
from .debug import DebugSession
from .base.error import *
from .base import signals, scancode, eascii

__version__ = VERSION