summaryrefslogtreecommitdiffstats
path: root/Python
diff options
context:
space:
mode:
authorMd Sadman Chowdhury <61442059+SpicyCatGames@users.noreply.github.com>2023-07-01 19:47:14 (GMT)
committerGitHub <noreply@github.com>2023-07-01 19:47:14 (GMT)
commit822db860eada721742f878653d7ac9364ed8df59 (patch)
tree2991c6995fb4027c7e10797150305f5290a0281f /Python
parentc2622a0d82078a7ab17597707b4dd42446a043ae (diff)
downloadcpython-822db860eada721742f878653d7ac9364ed8df59.zip
cpython-822db860eada721742f878653d7ac9364ed8df59.tar.gz
cpython-822db860eada721742f878653d7ac9364ed8df59.tar.bz2
Fix duplicate word typos in comments (#106225)
Diffstat (limited to 'Python')
-rw-r--r--Python/initconfig.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/initconfig.c b/Python/initconfig.c
index 1dcefd4..147cb37 100644
--- a/Python/initconfig.c
+++ b/Python/initconfig.c
@@ -538,7 +538,7 @@ _Py_SetArgcArgv(Py_ssize_t argc, wchar_t * const *argv)
_PyMem_SetDefaultAllocator(PYMEM_DOMAIN_RAW, &old_alloc);
// XXX _PyRuntime.orig_argv only gets cleared by Py_Main(),
- // so it it currently leaks for embedders.
+ // so it currently leaks for embedders.
res = _PyWideStringList_Copy(&_PyRuntime.orig_argv, &argv_list);
PyMem_SetAllocator(PYMEM_DOMAIN_RAW, &old_alloc);