From b519d23c167951f4f8a58137e322b09f5616019e Mon Sep 17 00:00:00 2001 From: Florent Xicluna Date: Thu, 4 Mar 2010 16:10:55 +0000 Subject: [PATCH] Missing part from r78654 --- Lib/multiprocessing/process.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Lib/multiprocessing/process.py b/Lib/multiprocessing/process.py index 1a5c25fbb1ba..c96a4b727560 100644 --- a/Lib/multiprocessing/process.py +++ b/Lib/multiprocessing/process.py @@ -179,7 +179,7 @@ class Process(object): @property def ident(self): ''' - Return indentifier (PID) of process or `None` if it has yet to start + Return identifier (PID) of process or `None` if it has yet to start ''' if self is _current_process: return os.getpid() -- 2.47.3