From 5bc9f4c09c99eb701dbee83fb9e26eed558e474f Mon Sep 17 00:00:00 2001 From: Jesse Noller Date: Tue, 19 Aug 2008 19:06:19 +0000 Subject: issue3352: clean up the multiprocessing API to remove many get_/set_ methods and convert them to properties. Update the docs and the examples included. --- Doc/includes/mp_workers.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Doc/includes/mp_workers.py') diff --git a/Doc/includes/mp_workers.py b/Doc/includes/mp_workers.py index 795e6cb9bf..07e4cdd2e0 100644 --- a/Doc/includes/mp_workers.py +++ b/Doc/includes/mp_workers.py @@ -29,7 +29,7 @@ def worker(input, output): def calculate(func, args): result = func(*args) return '%s says that %s%s = %s' % \ - (current_process().get_name(), func.__name__, args, result) + (current_process().name, func.__name__, args, result) # # Functions referenced by tasks -- cgit v1.2.1