home *** CD-ROM | disk | FTP | other *** search
/ Maximum CD 2010 November / maximum-cd-2010-11.iso / DiscContents / calibre-0.7.13.msi / file_2328 (.txt) < prev    next >
Encoding:
Python Compiled Bytecode  |  2010-08-06  |  2.1 KB  |  51 lines

  1. # Source Generated with Decompyle++
  2. # File: in.pyc (Python 2.6)
  3.  
  4.  
  5. class baseconsole:
  6.     
  7.     def __init__(self):
  8.         pass
  9.  
  10.     
  11.     def bell(self):
  12.         raise NotImplementedError
  13.  
  14.     
  15.     def pos(self, x = None, y = None):
  16.         raise NotImplementedError
  17.  
  18.     
  19.     def size(self):
  20.         raise NotImplementedError
  21.  
  22.     
  23.     def rectangle(self, rect, attr = None, fill = ' '):
  24.         raise NotImplementedError
  25.  
  26.     
  27.     def write_scrolling(self, text, attr = None):
  28.         raise NotImplementedError
  29.  
  30.     
  31.     def getkeypress(self):
  32.         raise NotImplementedError
  33.  
  34.     
  35.     def write(self, text):
  36.         raise NotImplementedError
  37.  
  38.     
  39.     def page(self, attr = None, fill = ' '):
  40.         raise NotImplementedError
  41.  
  42.     
  43.     def isatty(self):
  44.         return True
  45.  
  46.     
  47.     def flush(self):
  48.         pass
  49.  
  50.  
  51.