summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBerker Peksag <berker.peksag@gmail.com>2016-01-07 17:03:15 (GMT)
committerBerker Peksag <berker.peksag@gmail.com>2016-01-07 17:03:15 (GMT)
commitbd15bae45afd5d7361eb4cd0ca7df210fe8aaa2d (patch)
treefa6a390e836f7f40d53927e6cf20f5f2623b8e97
parentd56e67e1166ac9f0fc146f9e525172ef0888b8d1 (diff)
parent16fb6748820c72123239c0f326e141a14cf39f85 (diff)
downloadcpython-bd15bae45afd5d7361eb4cd0ca7df210fe8aaa2d.zip
cpython-bd15bae45afd5d7361eb4cd0ca7df210fe8aaa2d.tar.gz
cpython-bd15bae45afd5d7361eb4cd0ca7df210fe8aaa2d.tar.bz2
Fix typo in docstring of multiprocessing.spawn.spawn_main()
-rw-r--r--Lib/multiprocessing/spawn.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/multiprocessing/spawn.py b/Lib/multiprocessing/spawn.py
index 336e479..4d76951 100644
--- a/Lib/multiprocessing/spawn.py
+++ b/Lib/multiprocessing/spawn.py
@@ -91,7 +91,7 @@ def get_command_line(**kwds):
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':