We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7d4bb9f commit 649414cCopy full SHA for 649414c
1 file changed
Include/pydebug.h
@@ -16,7 +16,7 @@ extern DL_IMPORT(int) Py_TabcheckFlag;
16
extern DL_IMPORT(int) Py_UnicodeFlag;
17
extern DL_IMPORT(int) Py_IgnoreEnvironmentFlag;
18
19
-/* this is a wrapper around getenv() the pays attention to
+/* this is a wrapper around getenv() that pays attention to
20
Py_IgnoreEnvironmentFlag. It should be used for getting variables like
21
PYTHONPATH and PYTHONHOME from the environment */
22
#define Py_GETENV(s) (Py_IgnoreEnvironmentFlag ? NULL : getenv(s))
0 commit comments