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 0f687cf commit ec03845Copy full SHA for ec03845
Tools/check-c-api-docs/main.py
@@ -38,7 +38,11 @@
38
_CPYTHON = Path(__file__).parent.parent.parent
39
INCLUDE = _CPYTHON / "Include"
40
C_API_DOCS = _CPYTHON / "Doc" / "c-api"
41
-IGNORED = (_CPYTHON / "Tools" / "check-c-api-docs" / "ignored_c_api.txt").read_text().split("\n")
+IGNORED = (
42
+ (_CPYTHON / "Tools" / "check-c-api-docs" / "ignored_c_api.txt")
43
+ .read_text()
44
+ .split("\n")
45
+)
46
47
for index, line in enumerate(IGNORED):
48
if line.startswith("#"):
0 commit comments