Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for value (0.24 sec)

  1. fastapi/_compat.py

        return _annotation_is_sequence(annotation) or _annotation_is_sequence(
            get_origin(annotation)
        )
    
    
    def value_is_sequence(value: Any) -> bool:
        return isinstance(value, sequence_types) and not isinstance(value, (str, bytes))  # type: ignore[arg-type]
    
    
    def _annotation_is_complex(annotation: Union[Type[Any], None]) -> bool:
        return (
    Python
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Thu Apr 18 19:40:57 GMT 2024
    - 22.6K bytes
    - Viewed (0)
Back to top