Skip to content

Commit

Permalink
Add test scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
vstinner committed Jul 12, 2023
1 parent 9b1bd4d commit e4092a6
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 0 deletions.
11 changes: 11 additions & 0 deletions doc/funcs.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_functions

os.chdir('/home/vstinner/python/3.12')
#os.chdir('/home/vstinner/python/2.7')
#os.chdir('/home/vstinner/python/main')
public, private, internal = get_functions()
for name in sorted(private):
print(name)
11 changes: 11 additions & 0 deletions doc/types.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_types

#os.chdir('/home/vstinner/python/3.12')
#os.chdir('/home/vstinner/python/2.7')
os.chdir('/home/vstinner/python/main')
public, private, internal = get_types()
for name in sorted(private):
print(name)

0 comments on commit e4092a6

Please sign in to comment.