org.python.core

Class ThreadState


public class ThreadState
extends java.lang.Object

Field Summary

int
compareStateNesting
PyException
exception
PyFrame
frame
int
recursion_depth
PyList
reprStack
PySystemState
systemState
Thread
thread
boolean
tracing

Constructor Summary

ThreadState(Thread t, PySystemState systemState)

Method Summary

boolean
enterRepr(PyObject obj)
void
exitRepr(PyObject obj)
PyDictionary
getCompareStateDict()
PyInstance
getInitializingProxy()
void
popInitializingProxy()
void
pushInitializingProxy(PyInstance proxy)

Field Details

compareStateNesting

public int compareStateNesting

exception

public PyException exception

frame

public PyFrame frame

recursion_depth

public int recursion_depth

reprStack

public PyList reprStack

systemState

public PySystemState systemState

thread

public Thread thread

tracing

public boolean tracing

Constructor Details

ThreadState

public ThreadState(Thread t,
                   PySystemState systemState)

Method Details

enterRepr

public boolean enterRepr(PyObject obj)

exitRepr

public void exitRepr(PyObject obj)

getCompareStateDict

public PyDictionary getCompareStateDict()

getInitializingProxy

public PyInstance getInitializingProxy()

popInitializingProxy

public void popInitializingProxy()

pushInitializingProxy

public void pushInitializingProxy(PyInstance proxy)

Jython homepage