diff options
author | Florent Xicluna <florent.xicluna@gmail.com> | 2010-03-04 16:10:55 (GMT) |
---|---|---|
committer | Florent Xicluna <florent.xicluna@gmail.com> | 2010-03-04 16:10:55 (GMT) |
commit | b519d23c167951f4f8a58137e322b09f5616019e (patch) | |
tree | fbdf2d62fbc261a04f09f21e45269749be5b3148 /Lib/multiprocessing/process.py | |
parent | fb190f64b2658c860b4da5d0f6d98547718b9f12 (diff) | |
download | cpython-b519d23c167951f4f8a58137e322b09f5616019e.zip cpython-b519d23c167951f4f8a58137e322b09f5616019e.tar.gz cpython-b519d23c167951f4f8a58137e322b09f5616019e.tar.bz2 |
Missing part from r78654
Diffstat (limited to 'Lib/multiprocessing/process.py')
-rw-r--r-- | Lib/multiprocessing/process.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/multiprocessing/process.py b/Lib/multiprocessing/process.py index 1a5c25f..c96a4b7 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() |