##// END OF EJS Templates
typing: manually add type annotations to `mercurial/vfs.py`...
typing: manually add type annotations to `mercurial/vfs.py` This isn't everything, but hopefully it's close enough to hack on a protocol class.

File last commit:

r51654:2c34c9b6 default
r52785:fa9e8a65 default
Show More
__init__.py
9 lines | 294 B | text/x-python | PythonLexer
"""A lil' TOML parser."""
__all__ = ("loads", "load", "TOMLDecodeError")
__version__ = "1.2.3" # DO NOT EDIT THIS LINE MANUALLY. LET bump2version UTILITY DO IT
from ._parser import TOMLDecodeError, load, loads
# Pretend this exception was created here.
TOMLDecodeError.__module__ = "tomli"