summaryrefslogtreecommitdiff
path: root/Python/pythonrun.c
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@gmail.com>2013-11-12 17:18:51 +0100
committerVictor Stinner <victor.stinner@gmail.com>2013-11-12 17:18:51 +0100
commit24d2bc62d4f65e830305258cd3b4e8b31e4f4634 (patch)
treecf20e0cbc877e590308b76ad8a59f359258e2359 /Python/pythonrun.c
parent355e6272737a813c3db93acf944cc25a5c93aaa1 (diff)
downloadcpython-24d2bc62d4f65e830305258cd3b4e8b31e4f4634.tar.gz
Issue #19466: Fix typo. Patch written by Vajrasky Kok.
Diffstat (limited to 'Python/pythonrun.c')
-rw-r--r--Python/pythonrun.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/pythonrun.c b/Python/pythonrun.c
index 78942880e4..8a59169d4f 100644
--- a/Python/pythonrun.c
+++ b/Python/pythonrun.c
@@ -581,7 +581,7 @@ Py_Finalize(void)
other threads to call objects destructor. Destructors will be called in
the current Python thread. Since _Py_Finalizing has been set, no other
Python threads can lock the GIL at this point (if they try, they will
- exit immediatly). */
+ exit immediately). */
_PyThreadState_DeleteExcept(tstate);
/* Collect garbage. This may call finalizers; it's nice to call these