diff options
author | Christian Clauss <cclauss@me.com> | 2021-10-07 15:30:08 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-10-07 15:30:08 (GMT) |
commit | ccd82a080056f21da2041d4c5d0ac4421ad0c8a8 (patch) | |
tree | f2eafb028e085e2d7d62cc51c5ac2ae7d513e21c /Python/initconfig.c | |
parent | 212140dceb72d40ba19e4aef089c707dbbcfd5cb (diff) | |
download | cpython-ccd82a080056f21da2041d4c5d0ac4421ad0c8a8.zip cpython-ccd82a080056f21da2041d4c5d0ac4421ad0c8a8.tar.gz cpython-ccd82a080056f21da2041d4c5d0ac4421ad0c8a8.tar.bz2 |
[3.10] Fix typos in the Python directory (GH-28767) (GH-28799)
(cherry picked from commit db693df3e112c5a61f2cbef63eedce3a36520ded)
Diffstat (limited to 'Python/initconfig.c')
-rw-r--r-- | Python/initconfig.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/initconfig.c b/Python/initconfig.c index 27ae48d..b298611 100644 --- a/Python/initconfig.c +++ b/Python/initconfig.c @@ -2464,7 +2464,7 @@ warnoptions_append(PyConfig *config, PyWideStringList *options, { /* config_init_warnoptions() add existing config warnoptions at the end: ensure that the new option is not already present in this list to - prevent change the options order whne config_init_warnoptions() is + prevent change the options order when config_init_warnoptions() is called twice. */ if (_PyWideStringList_Find(&config->warnoptions, option)) { /* Already present: do nothing */ |