Package org.python.core
Interface ContextManager
-
- All Known Implementing Classes:
Condition,ContextGuard,Lock,PyConnection,PyCursor,PyExtendedCursor,PyLock,RLock
public interface ContextManagerAPyObjectthat provides__enter__and__exit__methods for use in the with-statement. Implementing context managers can then be potentially inlined by the JVM.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description PyObject__enter__(ThreadState ts)boolean__exit__(ThreadState ts, PyException exception)
-
-
-
Method Detail
-
__enter__
PyObject __enter__(ThreadState ts)
-
__exit__
boolean __exit__(ThreadState ts, PyException exception)
-
-