1 // Copyright (c) Corporation for National Research Initiatives2 package org.python.core;3 4 /**5 * Interface implemented by compiled modules which allow access to6 * to the module code object.7 */8 9 public interface PyRunnable {10 /**11 * Return the modules code object.12 */13 abstract public PyCode getMain();14 }15