abc-master
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros
getch._Getch Class Reference

Public Member Functions

def __init__
 
def __call__
 

Data Fields

 impl
 

Detailed Description

Gets a single character from standard input.  Does not echo to the screen.

Definition at line 2 of file getch.py.

Constructor & Destructor Documentation

def getch._Getch.__init__ (   self)

Definition at line 4 of file getch.py.

4 
5  def __init__(self):
6  try:
7  self.impl = _GetchWindows()
8  except ImportError:
9  self.impl = _GetchUnix()
def __init__
Definition: getch.py:4

Member Function Documentation

def getch._Getch.__call__ (   self)

Definition at line 10 of file getch.py.

10 
11  def __call__(self): return self.impl()
12 
def __call__
Definition: getch.py:10

Field Documentation

getch._Getch.impl

Definition at line 6 of file getch.py.


The documentation for this class was generated from the following file: