We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 08f8901 commit ab748d3Copy full SHA for ab748d3
stubs/docutils/docutils/writers/latex2e.pyi
@@ -1,3 +1,20 @@
1
from _typeshed import Incomplete
2
+from typing import ClassVar
3
+
4
+from docutils.utils import Reporter
5
6
+class Babel:
7
+ language_codes: ClassVar[dict[str, str]]
8
+ warn_msg: ClassVar[str]
9
+ active_chars: ClassVar[dict[str, str]]
10
11
+ reporter: Reporter | None
12
+ language: str
13
+ otherlanguages: dict[str, str]
14
15
+ def __init__(self, language_code: str, reporter: Reporter | None = None) -> None: ...
16
+ def __call__(self) -> str: ...
17
+ def language_name(self, language_code: str) -> str: ...
18
+ def get_language(self) -> str: ...
19
20
def __getattr__(name: str) -> Incomplete: ...
0 commit comments