TypeError: cannot pickle 'weakref' object
问题 Quite new to multiprocessing here. I have a code that runs two processes. One to continuously receive data blocks from the server and put it inside a queue and the other to remove the data blocks from the queue and process it. Below is my client code: import socket import turtle import multiprocessing from multiprocessing import Process, Queue from tkinter import * class GUI: def __init__(self, master): rec_data = recv_data() self.master = master master.title("Collision Detection") self.input