[Python-checkins] r78655 - python/branches/py3k/Lib/multiprocessing/process.py

florent.xicluna python-checkins at python.org
Thu Mar 4 17:10:55 CET 2010


Author: florent.xicluna
Date: Thu Mar  4 17:10:55 2010
New Revision: 78655

Log:
Missing part from r78654


Modified:
   python/branches/py3k/Lib/multiprocessing/process.py

Modified: python/branches/py3k/Lib/multiprocessing/process.py
==============================================================================
--- python/branches/py3k/Lib/multiprocessing/process.py	(original)
+++ python/branches/py3k/Lib/multiprocessing/process.py	Thu Mar  4 17:10:55 2010
@@ -179,7 +179,7 @@
     @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()


More information about the Python-checkins mailing list