]> granicus.if.org Git - python/commitdiff
Issue #19466: Fix typo. Patch written by Vajrasky Kok.
authorVictor Stinner <victor.stinner@gmail.com>
Tue, 12 Nov 2013 16:18:51 +0000 (17:18 +0100)
committerVictor Stinner <victor.stinner@gmail.com>
Tue, 12 Nov 2013 16:18:51 +0000 (17:18 +0100)
Python/pythonrun.c

index 78942880e47be1b010357d54b175f446181e6e86..8a59169d4f05d9ca3ed7a1f2733c16ad69db3441 100644 (file)
@@ -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