[Python-checkins] [python/cpython] bc50f0: bpo-30414: multiprocessing.Queue._feed do not brea...

GitHub noreply at github.com
Thu May 25 10:22:59 EDT 2017


  Branch: refs/heads/master
  Home:   https://github.com/python/cpython
  Commit: bc50f03db4f58c869b78e98468e374d7e61f1227
      https://github.com/python/cpython/commit/bc50f03db4f58c869b78e98468e374d7e61f1227
  Author: grzgrzgrz3 <grzgrzgrz3 at gmail.com>
  Date:   2017-05-25 (Thu, 25 May 2017)

  Changed paths:
    M Lib/multiprocessing/queues.py
    M Lib/test/_test_multiprocessing.py
    M Misc/NEWS

  Log Message:
  -----------
  bpo-30414: multiprocessing.Queue._feed do not break from main loop on exc (#1683)

* bpo-30414: multiprocesing.Queue._feed do not break from main loop on exc

Queue background running thread was not handling exceptions correctly.
Any exception occurred inside thread (putting unpickable object) cause
feeder to finish running. After that every message put into queue is
silently ignored.

* bpo-30414: multiprocesing.Queue._feed do not break from main loop on exc

Queue background running thread was not handling exceptions correctly.
Any exception occurred inside thread (putting unpickable object) cause
feeder to finish running. After that every message put into queue is
silently ignored.




More information about the Python-checkins mailing list