-
-
Notifications
You must be signed in to change notification settings - Fork 30.7k
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 our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
gh-92913: Clarify change to init config module_search_paths[_set] fields #92980
Conversation
Thanks @zooba for the PR 🌮🎉.. I'm working now to backport this PR to: 3.11. |
…set] fields (pythonGH-92980) (cherry picked from commit 403d16f) Co-authored-by: Steve Dower <steve.dower@python.org>
GH-92982 is a backport of this pull request to the 3.11 branch. |
/* Specify sys.path explicitly */ | ||
/* To calculate the default and then modify, finish initialization and | ||
then use PySys_GetObject("path") to get the list. */ | ||
condig.module_search_paths_set = 1 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Two typos in this line: condig
, and missing a trailing semicolon.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks. I was zoned out of my mind with fatigue/allergies when I did this PR, so I'm impressed this was the worst of it (it wasn't the worst of my whole day, unfortunately)
Fixes #92913