17 lines
314 B
Cython
17 lines
314 B
Cython
import os
|
|
import re
|
|
import sys
|
|
import time
|
|
import struct
|
|
import termios
|
|
import fcntl
|
|
|
|
_version = 2.1
|
|
|
|
class GeneralError(Exception):
|
|
"""General string error. Thrown around a lot these days."""
|
|
def __init__(self, description=None):
|
|
self.description = description
|
|
|
|
def __str__(self):
|
|
return self.description
|