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 93211a8 commit 08f8901Copy full SHA for 08f8901
stubs/docutils/docutils/utils/roman.pyi
@@ -0,0 +1,14 @@
1
+import re
2
+
3
+class RomanError(Exception): ...
4
+class OutOfRangeError(RomanError): ...
5
+class NotIntegerError(RomanError): ...
6
+class InvalidRomanNumeralError(RomanError): ...
7
8
+romanNumeralMap: tuple[tuple[str, int], ...]
9
10
+def toRoman(n: int) -> str: ...
11
12
+romanNumeralPattern: re.Pattern[str]
13
14
+def fromRoman(s: str) -> int: ...
0 commit comments