 
      
      process_return()Return a value to parent process and terminate the child process
process_return(data)
data (any)  — A value to be returned to parent process. Note: since this function packs data as a JSON format, you cannot pass a "complex" object that refers to a memory address. For example: process_return(gui_window()) will be passed as nothing
boolean — Always returns true
import multiprocess
 
' Do some intensive operations...
 
process_return(10)