##// END OF EJS Templates
pytype: convert type comment for inline variable too...
pytype: convert type comment for inline variable too Same logic as for the previous changeset, but for "type comment" annotating variables, not function/method. As for the previous changeset, we had to adjust for of the types to actually match what was happening.

File last commit:

r51654:2c34c9b6 default
r52181:8b2ea224 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"