- Notifications
You must be signed in to change notification settings - Fork752
Add function to set Py_NoSiteFlag global variable to 1#971
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to ourterms of service andprivacy statement. We’ll occasionally send you account related emails.
Already on GitHub?Sign in to your account
Uh oh!
There was an error while loading.Please reload this page.
Conversation
codecov-io commentedOct 17, 2019 • edited
Loading Uh oh!
There was an error while loading.Please reload this page.
edited
Uh oh!
There was an error while loading.Please reload this page.
Codecov Report
@@ Coverage Diff @@## master #971 +/- ##======================================= Coverage 86.71% 86.71% ======================================= Files 1 1 Lines 301 301 ======================================= Hits 261 261 Misses 40 40
Continue to review full report at Codecov.
|
Uh oh!
There was an error while loading.Please reload this page.
* Add function to set Py_NoSiteFlag global variable to 1.* Add myself to authors, update changelog.
I'm using pythonnet to embed python 3.6 in a C# WPF application. I'm effectively booting up a venv with pythonnet and I noticed the user site folder kept getting included in
sys.path
.There is a command line argument to disable this, (-S, more info here:https://docs.python.org/3/using/cmdline.html#id3) but as pythonnet loads python directly, this won't work.
There is a way to access this flag with the C API, info here:https://docs.python.org/3/c-api/init.html#c.Py_NoSiteFlag
This is a global variable that is exported, defined here:https://github.com/python/cpython/blob/3.6/Include/pydebug.h
My particular use case is for python 3.6, but it appears this flag is present in 2.7 and all currently supported 3.x versions.
Here is an example on how I am using this addition:
It seems to do the business and I no longer get the user site package path in
sys.path
.Note: I'm not quite sure how to test this addition as really is dependent on the user's environment. Perhaps a test to verify the global var is set to 1? Please let me know your thoughts.