From 649414c63011446c330d744610e2dd670c69494e Mon Sep 17 00:00:00 2001 From: Neil Schemenauer Date: Mon, 23 Jul 2001 16:50:15 +0000 Subject: Fix typo in comment. --- Include/pydebug.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Include/pydebug.h b/Include/pydebug.h index 94ea352..32e1552 100644 --- a/Include/pydebug.h +++ b/Include/pydebug.h @@ -16,7 +16,7 @@ extern DL_IMPORT(int) Py_TabcheckFlag; extern DL_IMPORT(int) Py_UnicodeFlag; extern DL_IMPORT(int) Py_IgnoreEnvironmentFlag; -/* this is a wrapper around getenv() the pays attention to +/* this is a wrapper around getenv() that pays attention to Py_IgnoreEnvironmentFlag. It should be used for getting variables like PYTHONPATH and PYTHONHOME from the environment */ #define Py_GETENV(s) (Py_IgnoreEnvironmentFlag ? NULL : getenv(s)) -- cgit v0.12