diff options
author | MandarJKulkarni <33712629+MandarJKulkarni@users.noreply.github.com> | 2019-05-28 22:55:05 (GMT) |
---|---|---|
committer | Cheryl Sabella <cheryl.sabella@gmail.com> | 2019-05-28 22:55:05 (GMT) |
commit | 33ce3f012f249782507df896824b045b34f765aa (patch) | |
tree | cebb2121b889e5b0345ddeff4c2cd67893e7414d /Include/cpython | |
parent | 9e3c4526394856d6376eed4968d27d53e1d69b7d (diff) | |
download | cpython-33ce3f012f249782507df896824b045b34f765aa.zip cpython-33ce3f012f249782507df896824b045b34f765aa.tar.gz cpython-33ce3f012f249782507df896824b045b34f765aa.tar.bz2 |
Fix comments in initconfig.h (GH-13636)
Diffstat (limited to 'Include/cpython')
-rw-r--r-- | Include/cpython/initconfig.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Include/cpython/initconfig.h b/Include/cpython/initconfig.h index a98b91a..67f38e2 100644 --- a/Include/cpython/initconfig.h +++ b/Include/cpython/initconfig.h @@ -71,11 +71,11 @@ typedef struct { Set to 0 by PYTHONCOERCECLOCALE=0. Set to 1 by PYTHONCOERCECLOCALE=1. Set to 2 if the user preferred LC_CTYPE locale is "C". - If it is equal to 1, LC_CTYPE locale is read to decide it it should be + If it is equal to 1, LC_CTYPE locale is read to decide if it should be coerced or not (ex: PYTHONCOERCECLOCALE=1). Internally, it is set to 2 if the LC_CTYPE locale must be coerced. - Disable by default (set to 0). Set it to -1 to let Python decides if it + Disable by default (set to 0). Set it to -1 to let Python decide if it should be enabled or not. */ int coerce_c_locale; @@ -83,7 +83,7 @@ typedef struct { Set to 1 by PYTHONCOERCECLOCALE=warn. - Disable by default (set to 0). Set it to -1 to let Python decides if it + Disable by default (set to 0). Set it to -1 to let Python decide if it should be enabled or not. */ int coerce_c_locale_warn; |