view mercurial/thirdparty/attr/converters.pyi @ 51801:62b25293b620 default tip

typing: correct a type hint in `mercurial.manifest` Obvious typo that was flagged by PyCharm.
author Matt Harbison <matt_harbison@yahoo.com>
date Wed, 14 Aug 2024 03:25:16 -0400
parents e1c586b9a43c
children
line wrap: on
line source

from typing import Callable, Optional, TypeVar, overload

from . import _ConverterType

_T = TypeVar("_T")

def pipe(*validators: _ConverterType) -> _ConverterType: ...
def optional(converter: _ConverterType) -> _ConverterType: ...
@overload
def default_if_none(default: _T) -> _ConverterType: ...
@overload
def default_if_none(*, factory: Callable[[], _T]) -> _ConverterType: ...
def to_bool(val: str) -> bool: ...