Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for is_bytes_sequence_annotation (2.88 sec)

  1. tests/test_compat.py

    from typing import Union
    
    from fastapi import FastAPI, UploadFile
    from fastapi._compat import (
        Undefined,
        is_uploadfile_sequence_annotation,
    )
    from fastapi._compat.shared import is_bytes_sequence_annotation
    from fastapi.testclient import TestClient
    from pydantic import BaseModel, ConfigDict
    from pydantic.fields import FieldInfo
    
    from .utils import needs_py310
    
    
    def test_model_field_default_required():
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Sat Dec 27 12:54:56 UTC 2025
    - 4.2K bytes
    - Viewed (0)
  2. fastapi/_compat/shared.py

                    return True
        return False
    
    
    def is_bytes_sequence_annotation(annotation: Any) -> bool:
        origin = get_origin(annotation)
        if origin is Union or origin is UnionType:
            at_least_one = False
            for arg in get_args(annotation):
                if is_bytes_sequence_annotation(arg):
                    at_least_one = True
                    continue
            return at_least_one
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Sat Dec 27 12:54:56 UTC 2025
    - 6.7K bytes
    - Viewed (0)
  3. fastapi/_compat/v2.py

    
    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_)
    
    
    def copy_field_info(*, field_info: FieldInfo, annotation: Any) -> FieldInfo:
        cls = type(field_info)
        merged_field_info = cls.from_annotation(annotation)
    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