from multiprocessing import Pool class Test: def hello(self, name): print(name) p = Pool() p.apply(Test().hello, ("jimbo",)) p.terminate() p.join()