Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for is_coroutine_callable (0.08 sec)

  1. fastapi/dependencies/models.py

                _impartial(dunder_unwrapped_call)
            ) or inspect.isasyncgenfunction(_unwrapped_call(dunder_unwrapped_call)):
                return True
            return False
    
        @cached_property
        def is_coroutine_callable(self) -> bool:
            if self.call is None:
                return False  # pragma: no cover
            if inspect.isroutine(_impartial(self.call)) and iscoroutinefunction(
                _impartial(self.call)
            ):
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Wed Dec 17 21:25:59 UTC 2025
    - 7.1K bytes
    - Viewed (0)
Back to top