Skip to content

Commit

Permalink
Add variables.py
Browse files Browse the repository at this point in the history
  • Loading branch information
vstinner committed Jul 22, 2023
1 parent f875cac commit 57898c5
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions doc/variables.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
#!/usr/bin/python3
import os
import subprocess
from pythoncapi import get_variables

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

0 comments on commit 57898c5

Please sign in to comment.