Context Manager ABCs#

संस्करण 4.3.2 से नया .

महत्त्वपूर्ण

This page contains metaclasses. As this is an advanced Python topic you should not try to use these methods if you don't have the experience.

class interactions.utils.abc.base_context_managers.BaseAsyncContextManager[स्रोत]#

आधार: ABC

संस्करण 4.3.2 से नया .

A base class for async context managers.

abstract __init__()[स्रोत]#

Initialise the Context manager

abstract async __aenter__()[स्रोत]#

Enter the context manager

abstract async __aexit__(exc_type, exc_val, exc_tb)[स्रोत]#

Exit the context Manager

class interactions.utils.abc.base_context_managers.BaseContextManager[स्रोत]#

आधार: ABC

संस्करण 4.3.2 से नया .

A base class for context managers.

abstract __init__()[स्रोत]#

Initialise the Context manager

abstract __enter__()[स्रोत]#

Enter the context manager

abstract __exit__(exc_type, exc_val, exc_tb)[स्रोत]#

Exit the context Manager