view mercurial/thirdparty/tomli/_types.py @ 51227:e553cd209215

rust-index: avoid double negation in find_gca_candidates()
author Georges Racinet <georges.racinet@octobus.net>
date Fri, 20 Oct 2023 08:43:00 +0200
parents 2c34c9b61a4f
children
line wrap: on
line source

from typing import Any, Callable, Tuple

# Type annotations
ParseFloat = Callable[[str], Any]
Key = Tuple[str, ...]
Pos = int