home *** CD-ROM | disk | FTP | other *** search
- # Source Generated with Decompyle++
- # File: in.pyc (Python 2.6)
-
-
- class baseconsole:
-
- def __init__(self):
- pass
-
-
- def bell(self):
- raise NotImplementedError
-
-
- def pos(self, x = None, y = None):
- raise NotImplementedError
-
-
- def size(self):
- raise NotImplementedError
-
-
- def rectangle(self, rect, attr = None, fill = ' '):
- raise NotImplementedError
-
-
- def write_scrolling(self, text, attr = None):
- raise NotImplementedError
-
-
- def getkeypress(self):
- raise NotImplementedError
-
-
- def write(self, text):
- raise NotImplementedError
-
-
- def page(self, attr = None, fill = ' '):
- raise NotImplementedError
-
-
- def isatty(self):
- return True
-
-
- def flush(self):
- pass
-
-
-