-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into python_default
- Loading branch information
Showing
7 changed files
with
1,604 additions
and
42 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -85,4 +85,4 @@ MacroSystem/*_vcl.py | |
.vscode | ||
|
||
# Visual Studio | ||
.vs | ||
.vs |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,12 @@ | ||
import sys | ||
import sysconfig | ||
from pprint import pprint | ||
print("I'm _meet_natlink.py and I'm being loaded, too, on my own.") | ||
print("This is your Python configuration as per sysconfig") | ||
print("--------------------------------------------------") | ||
print("This is your Python configuration as per sysconfig:") | ||
print("---------------------------------------------------") | ||
sysconfig._main() | ||
print("This is your Python system path sys.path") | ||
print("----------------------------------------") | ||
print(sys.path) | ||
print("This is your Python system path sys.path:") | ||
print("-----------------------------------------") | ||
pprint(sys.path) | ||
print("End of _meet_natlink.py info.") | ||
print("-----------------------------") |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.