01: // Copyright (c) Corporation for National Research Initiatives
02: package org.python.core;
03:
04: /**
05: * Interface implemented by compiled modules which allow access to
06: * to the module code object.
07: */
08:
09: public interface PyRunnable {
10: /**
11: * Return the modules code object.
12: */
13: abstract public PyCode getMain();
14: }
|