Search Options

Display Count
Sort
Preferred Language
Advanced Search

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

  1. fastapi/dependencies/utils.py

                signature = inspect.signature(call, annotation_format=Format.FORWARDREF)
            else:
                signature = inspect.signature(call)
        return signature
    
    
    def get_typed_signature(call: Callable[..., Any]) -> inspect.Signature:
        signature = _get_signature(call)
        unwrapped = inspect.unwrap(call)
        globalns = getattr(unwrapped, "__globals__", {})
        typed_params = [
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Sun Mar 15 11:44:39 GMT 2026
    - 38.7K bytes
    - Click Count (3)
Back to Top