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 intcall_depthintcompareStateNestingPyExceptionexceptionPyFrameframeTraceFunctionprofilefuncPyListreprStackTraceFunctiontracefuncbooleantracing
-
Constructor Summary
Constructors Constructor Description ThreadState(PySystemState systemState)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanenterRepr(PyObject obj)voidexitRepr(PyObject obj)PyDictionarygetCompareStateDict()PySystemStategetSystemState()voidsetSystemState(PySystemState systemState)
-
-
-
Field Detail
-
frame
public PyFrame frame
-
exception
public PyException exception
-
call_depth
public int call_depth
-
tracing
public boolean tracing
-
reprStack
public PyList reprStack
-
compareStateNesting
public int compareStateNesting
-
tracefunc
public TraceFunction tracefunc
-
profilefunc
public TraceFunction profilefunc
-
-
Constructor Detail
-
ThreadState
public ThreadState(PySystemState systemState)
-
-
Method Detail
-
setSystemState
public void setSystemState(PySystemState systemState)
-
getSystemState
public PySystemState getSystemState()
-
enterRepr
public boolean enterRepr(PyObject obj)
-
exitRepr
public void exitRepr(PyObject obj)
-
getCompareStateDict
public PyDictionary getCompareStateDict()
-
-