[Python-checkins] cpython (3.2): Issue #15881: Fixed 3.2 backport.

alexander.belopolsky python-checkins at python.org
Sun Sep 9 19:31:21 CEST 2012


http://hg.python.org/cpython/rev/db67b848ddc3
changeset:   78926:db67b848ddc3
branch:      3.2
parent:      78924:89a5169f2979
user:        Alexander Belopolsky <alexander.belopolsky at gmail.com>
date:        Sun Sep 09 13:31:08 2012 -0400
summary:
  Issue #15881: Fixed 3.2 backport.

files:
  Lib/multiprocessing/util.py |  2 ++
  1 files changed, 2 insertions(+), 0 deletions(-)


diff --git a/Lib/multiprocessing/util.py b/Lib/multiprocessing/util.py
--- a/Lib/multiprocessing/util.py
+++ b/Lib/multiprocessing/util.py
@@ -294,6 +294,8 @@
     global _exiting
 
     if not _exiting:
+        _exiting = True
+
         info('process shutting down')
         debug('running all "atexit" finalizers with priority >= 0')
         _run_finalizers(0)

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


More information about the Python-checkins mailing list