Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for iscoroutinefunction (0.08 seconds)

  1. fastapi/dependencies/models.py

            if iscoroutinefunction(_impartial(dunder_call)) or iscoroutinefunction(
                _unwrapped_call(dunder_call)
            ):
                return True
            dunder_unwrapped_call = getattr(_unwrapped_call(self.call), "__call__", None)  # noqa: B004
            if dunder_unwrapped_call is None:
                return False  # pragma: no cover
            if iscoroutinefunction(
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Wed Feb 11 18:41:21 GMT 2026
    - 7.1K bytes
    - Click Count (0)
  2. fastapi/routing.py

    def websocket_session(
        func: Callable[[WebSocket], Awaitable[None]],
    ) -> ASGIApp:
        """
        Takes a coroutine `func(session)`, and returns an ASGI application.
        """
        # assert asyncio.iscoroutinefunction(func), "WebSocket endpoints must be async"
    
        async def app(scope: Scope, receive: Receive, send: Send) -> None:
            session = WebSocket(scope, receive=receive, send=send)
    
    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