org.python.core
Interface ContextManager

All Known Implementing Classes:
Condition, ContextGuard, Lock, PyConnection, PyCursor, PyExtendedCursor

public interface ContextManager

A PyObject that provides __enter__ and __exit__ methods for use in the with-statement. Implementing context managers can then be potentially inlined by the JVM.


Method Summary
 PyObject __enter__(ThreadState ts)
           
 boolean __exit__(ThreadState ts, PyException exception)
           
 

Method Detail

__enter__

PyObject __enter__(ThreadState ts)

__exit__

boolean __exit__(ThreadState ts,
                 PyException exception)


Jython homepage