Skip to content

Commit

Permalink
macros
Browse files Browse the repository at this point in the history
  • Loading branch information
vstinner committed Jul 21, 2023
1 parent 3d7810e commit be8c443
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions doc/macros.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
#!/usr/bin/python3
import os
import subprocess
from pythoncapi import get_macros_static_inline_funcs

#os.chdir('/home/vstinner/python/3.11')
#os.chdir('/home/vstinner/python/2.7')
os.chdir('/home/vstinner/python/main')
macros, funcs, private_macros, private_funcs = get_macros_static_inline_funcs()
for name in sorted(private_macros):
print(name)

0 comments on commit be8c443

Please sign in to comment.