Package org.python.core
Class ThreadState
- java.lang.Object
-
- org.python.core.ThreadState
-
public class ThreadState extends java.lang.Object
-
-
Field Summary
Fields Modifier and Type Field Description intcompareStateNestingPyExceptionexceptionPyFrameframeintrecursion_depthPyListreprStackPySystemStatesystemStatejava.lang.Threadthreadbooleantracing
-
Constructor Summary
Constructors Constructor Description ThreadState(java.lang.Thread t, PySystemState systemState)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanenterRepr(PyObject obj)voidexitRepr(PyObject obj)PyDictionarygetCompareStateDict()PyInstancegetInitializingProxy()voidpopInitializingProxy()voidpushInitializingProxy(PyInstance proxy)
-
-
-
Field Detail
-
systemState
public PySystemState systemState
-
frame
public PyFrame frame
-
exception
public PyException exception
-
thread
public java.lang.Thread thread
-
tracing
public boolean tracing
-
reprStack
public PyList reprStack
-
compareStateNesting
public int compareStateNesting
-
recursion_depth
public int recursion_depth
-
-
Constructor Detail
-
ThreadState
public ThreadState(java.lang.Thread t, PySystemState systemState)
-
-
Method Detail
-
getInitializingProxy
public PyInstance getInitializingProxy()
-
pushInitializingProxy
public void pushInitializingProxy(PyInstance proxy)
-
popInitializingProxy
public void popInitializingProxy()
-
enterRepr
public boolean enterRepr(PyObject obj)
-
exitRepr
public void exitRepr(PyObject obj)
-
getCompareStateDict
public PyDictionary getCompareStateDict()
-
-