mercurial/thirdparty/tomli/_types.py
changeset 50761 2c34c9b61a4f
equal deleted inserted replaced
50760:b584dae08774 50761:2c34c9b61a4f
       
     1 from typing import Any, Callable, Tuple
       
     2 
       
     3 # Type annotations
       
     4 ParseFloat = Callable[[str], Any]
       
     5 Key = Tuple[str, ...]
       
     6 Pos = int