Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for is_bytes_or_nonable_bytes_annotation (0.09 sec)

  1. fastapi/_compat/v2.py

    def is_scalar_sequence_field(field: ModelField) -> bool:
        return shared.field_annotation_is_scalar_sequence(field.field_info.annotation)
    
    
    def is_bytes_field(field: ModelField) -> bool:
        return shared.is_bytes_or_nonable_bytes_annotation(field.type_)
    
    
    def is_bytes_sequence_field(field: ModelField) -> bool:
        return shared.is_bytes_sequence_annotation(field.type_)
    
    
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Sat Dec 27 12:54:56 UTC 2025
    - 19.1K bytes
    - Viewed (0)
Back to top