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 int
compareStateNesting
PyException
exception
PyFrame
frame
int
recursion_depth
PyList
reprStack
PySystemState
systemState
java.lang.Thread
thread
boolean
tracing
-
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 boolean
enterRepr(PyObject obj)
void
exitRepr(PyObject obj)
PyDictionary
getCompareStateDict()
PyInstance
getInitializingProxy()
void
popInitializingProxy()
void
pushInitializingProxy(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()
-
-