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 1b5b269 commit 831f065Copy full SHA for 831f065
2 files changed
.gitignore
@@ -1 +1,2 @@
1
doc/build/
2
+__pycache__
doc/list_structs.py
@@ -12,8 +12,11 @@ def main():
12
sys.exit(1)
13
14
limited = get_types(PATH_LIMITED_API)
15
- cpython = get_types(PATH_CPYTHON_API)
16
- names = sorted(set(limited) | set(cpython))
+ if 1:
+ cpython = get_types(PATH_CPYTHON_API)
17
+ names = sorted(set(limited) | set(cpython))
18
+ else:
19
+ names = limited
20
for name in names:
21
print("*", name)
22
print()
0 commit comments