[Python-checkins] cpython: Issue #19466: Fix typo. Patch written by Vajrasky Kok.

victor.stinner python-checkins at python.org
Tue Nov 12 17:19:01 CET 2013


http://hg.python.org/cpython/rev/10a8e676b87b
changeset:   87071:10a8e676b87b
user:        Victor Stinner <victor.stinner at gmail.com>
date:        Tue Nov 12 17:18:51 2013 +0100
summary:
  Issue #19466: Fix typo. Patch written by Vajrasky Kok.

files:
  Python/pythonrun.c |  2 +-
  1 files changed, 1 insertions(+), 1 deletions(-)


diff --git a/Python/pythonrun.c b/Python/pythonrun.c
--- a/Python/pythonrun.c
+++ b/Python/pythonrun.c
@@ -581,7 +581,7 @@
        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

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list