Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 1 of 1 for isasyncgenfunction (0.07 seconds)

  1. fastapi/dependencies/models.py

        @cached_property
        def is_async_gen_callable(self) -> bool:
            if self.call is None:
                return False  # pragma: no cover
            if inspect.isasyncgenfunction(
                _impartial(self.call)
            ) or inspect.isasyncgenfunction(_unwrapped_call(self.call)):
                return True
            if inspect.isclass(_unwrapped_call(self.call)):
                return False
    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)
Back to Top