This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: Multiprocessing resolving object as None
Type: behavior Stage:
Components: Library (Lib) Versions: Python 3.8
process
Status: open Resolution:
Dependencies: Superseder:
Assigned To: Nosy List: Talley Lambert, corona10, davin, pitrou, rdil
Priority: normal Keywords:

Created on 2020-01-21 17:07 by rdil, last changed 2022-04-11 14:59 by admin.

Messages (4)
msg360407 - (view) Author: Reece Dunham (rdil) * Date: 2020-01-21 17:07
Exception ignored in: <function Pool.__del__ at 0x7ffbaf47d9d0>
Traceback (most recent call last):
  File "/root/conda/lib/python3.8/multiprocessing/pool.py", line 268, in __del__
  File "/root/conda/lib/python3.8/multiprocessing/queues.py", line 362, in put
AttributeError: 'NoneType' object has no attribute 'dumps'

Pretty sure that shouldn't be None.
msg360409 - (view) Author: Dong-hee Na (corona10) * (Python committer) Date: 2020-01-21 17:14
If you don't mind, Would you like to attach the reproducible script for this?
msg360411 - (view) Author: Reece Dunham (rdil) * Date: 2020-01-21 17:24
Not sure exactly where its being thrown, but I know it happened in https://cirrus-ci.com/task/4875001270632448?command=test_pyside2#L3974
msg365837 - (view) Author: Talley Lambert (Talley Lambert) Date: 2020-04-06 02:45
FYI, this bug was an issue with dask: https://github.com/dask/dask/issues/5806
and has been fixed in dask as of (I believe) v2.11.0
History
Date User Action Args
2022-04-11 14:59:25adminsetgithub: 83595
2020-04-06 02:45:54Talley Lambertsetnosy: + Talley Lambert
messages: + msg365837
2020-01-24 19:17:37ned.deilysetnosy: + pitrou, davin
2020-01-21 17:24:14rdilsetmessages: + msg360411
2020-01-21 17:14:28corona10setnosy: + corona10
messages: + msg360409
2020-01-21 17:09:30rdilsettype: behavior
2020-01-21 17:07:47rdilcreate