Skip to content

Commit

Permalink
gh-92913: Fix typos in documentation (GH-93129)
Browse files Browse the repository at this point in the history
  • Loading branch information
zooba committed May 23, 2022
1 parent 71abeb0 commit 6a6f823
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Doc/c-api/init_config.rst
Expand Up @@ -1322,9 +1322,9 @@ initialization::
}
/* 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
/* If you want to modify the default set of paths, finish
initialization first and then use PySys_GetObject("path") */
config.module_search_paths_set = 1;
status = PyWideStringList_Append(&config.module_search_paths,
L"/path/to/stdlib");
if (PyStatus_Exception(status)) {
Expand Down

0 comments on commit 6a6f823

Please sign in to comment.