[Python-checkins] cpython (merge 3.5 -> default): Fix typo in docstring of multiprocessing.spawn.spawn_main()

berker.peksag python-checkins at python.org
Thu Jan 7 12:03:21 EST 2016


https://hg.python.org/cpython/rev/58e8125d7f4e
changeset:   99797:58e8125d7f4e
parent:      99794:2902f32d1ae9
parent:      99796:97ce60e8958c
user:        Berker Peksag <berker.peksag at gmail.com>
date:        Thu Jan 07 19:03:15 2016 +0200
summary:
  Fix typo in docstring of multiprocessing.spawn.spawn_main()

files:
  Lib/multiprocessing/spawn.py |  2 +-
  1 files changed, 1 insertions(+), 1 deletions(-)


diff --git a/Lib/multiprocessing/spawn.py b/Lib/multiprocessing/spawn.py
--- a/Lib/multiprocessing/spawn.py
+++ b/Lib/multiprocessing/spawn.py
@@ -91,7 +91,7 @@
 
 def spawn_main(pipe_handle, parent_pid=None, tracker_fd=None):
     '''
-    Run code specifed by data received over pipe
+    Run code specified by data received over pipe
     '''
     assert is_forking(sys.argv)
     if sys.platform == 'win32':

-- 
Repository URL: https://hg.python.org/cpython


More information about the Python-checkins mailing list