Condition
, ContextGuard
, Lock
, PyConnection
, PyCursor
, PyExtendedCursor
, PyLock
, RLock
public interface ContextManager
PyObject
that provides __enter__
and __exit__
methods for use in the with-statement.
Implementing context managers can then be potentially inlined by the JVM.Modifier and Type | Method | Description |
---|---|---|
PyObject |
__enter__(ThreadState ts) |
|
boolean |
__exit__(ThreadState ts,
PyException exception) |
PyObject __enter__(ThreadState ts)
boolean __exit__(ThreadState ts, PyException exception)