1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31
|
"""
The base module of io.
This module contains the base classes for input and output.
All classes in this module should be called directly via expyriment.io.*.
"""
__author__ = 'Florian Krause <florian@expyriment.org>, \
Oliver Lindemann <oliver@expyriment.org>'
__version__ = '0.7.0'
__revision__ = '55a4e7e'
__date__ = 'Wed Mar 26 14:33:37 2014 +0100'
import expyriment
class Input(expyriment._Expyriment_object):
"""A class implementing a general input."""
def __init__(self):
"""Create an input."""
expyriment._Expyriment_object.__init__(self)
class Output(expyriment._Expyriment_object):
"""A class implementing a general output."""
def __init__(self):
"""Create an output."""
expyriment._Expyriment_object.__init__(self)
|