01: // Copyright (c) Corporation for National Research Initiatives
02: package org.python.core;
03:
04: /**
05: * An entry point for class that implements several function calls.
06: * <P>
07: * Used together with the PyTableCode class.
08: *
09: * @see PyTableCode
10: */
11:
12: public abstract class PyFunctionTable {
13: abstract public PyObject call_function(int index, PyFrame frame);
14: }
|