diff options
author | Neil Schemenauer <nascheme@enme.ucalgary.ca> | 2001-07-23 16:50:15 (GMT) |
---|---|---|
committer | Neil Schemenauer <nascheme@enme.ucalgary.ca> | 2001-07-23 16:50:15 (GMT) |
commit | 649414c63011446c330d744610e2dd670c69494e (patch) | |
tree | 9b14e52110db99b1308020acd00202f6f5092aa2 /Include | |
parent | 7d4bb9f179f1888a472fd5d5a30df4ec3c55fea5 (diff) | |
download | cpython-649414c63011446c330d744610e2dd670c69494e.zip cpython-649414c63011446c330d744610e2dd670c69494e.tar.gz cpython-649414c63011446c330d744610e2dd670c69494e.tar.bz2 |
Fix typo in comment.
Diffstat (limited to 'Include')
-rw-r--r-- | Include/pydebug.h | 2 |
1 files changed, 1 insertions, 1 deletions
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)) |