Sophie

Sophie

distrib > Mandriva > 2008.1 > x86_64 > media > contrib-backports > by-pkgid > 5a28ce08f20e322d24ac159a4334c346 > files > 2371

python-enthought-mayavi2-2.2.0-1mdv2008.1.x86_64.rpm

""" An entry point for an application. """


# Enthought library imports.
from enthought.envisage.api import Runnable


class ExampleRunnable(Runnable):
    """ An entry point for an application. """
    
    ###########################################################################
    # 'Runnable' interface.
    ###########################################################################

    def run(self, application):
        """ Runs the application. """

        print 'ExampleRunnable.run', application, application.argv
        
        return

#### EOF ######################################################################