Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 1 of 1 for __aiter__ (0.15 seconds)

  1. fastapi/routing.py

        This is vendored from Starlette to avoid importing private symbols.
        """
    
        def __init__(self, cm: AbstractContextManager[_T]) -> None:
            self._cm = cm
    
        async def __aenter__(self) -> _T:
            return self._cm.__enter__()
    
        async def __aexit__(
            self,
            exc_type: type[BaseException] | None,
            exc_value: BaseException | None,
            traceback: types.TracebackType | None,
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Sun Mar 15 11:44:39 GMT 2026
    - 193K bytes
    - Click Count (0)
Back to Top