Mark chevron as completed (#8884)

This commit is contained in:
Nikita Sobolev
2022-10-12 11:35:12 +03:00
committed by GitHub
parent 33e1a34e3c
commit f02093cb64
3 changed files with 9 additions and 0 deletions

View File

@@ -0,0 +1,3 @@
# These are re-exports which we consider an implementation detail:
chevron.main.version
chevron.renderer.linesep

View File

@@ -1 +1,4 @@
version = "0.14.*"
[tool.stubtest]
ignore_missing_stub = false

View File

@@ -1,9 +1,12 @@
from _typeshed import StrPath, SupportsRead
from collections.abc import MutableSequence, Sequence
from typing import Any
from typing_extensions import Literal
g_token_cache: dict[str, list[tuple[str, str]]] # undocumented
python3: Literal[True]
def unicode(x: str, y: str) -> str: ...
def render(
template: SupportsRead[str] | str | Sequence[tuple[str, str]] = ...,
data: dict[str, Any] = ...,