Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for is_bytes_or_nonable_bytes_annotation (0.88 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

  1. fastapi/_compat/shared.py

        return field_annotation_is_sequence(annotation) and all(
            field_annotation_is_scalar(sub_annotation)
            for sub_annotation in get_args(annotation)
        )
    
    
    def is_bytes_or_nonable_bytes_annotation(annotation: Any) -> bool:
        if lenient_issubclass(annotation, bytes):
            return True
        origin = get_origin(annotation)
        if origin is Union or origin is UnionType:
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Wed Feb 11 18:32:12 GMT 2026
    - 6.9K bytes
    - Click Count (0)
  2. fastapi/dependencies/utils.py

        field_annotation_is_scalar,
        field_annotation_is_scalar_sequence,
        field_annotation_is_sequence,
        get_cached_model_fields,
        get_missing_field_error,
        is_bytes_or_nonable_bytes_annotation,
        is_bytes_sequence_annotation,
        is_scalar_field,
        is_uploadfile_or_nonable_uploadfile_annotation,
        is_uploadfile_sequence_annotation,
        lenient_issubclass,
        sequence_types,
    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