diff options
| author | Berker Peksag <berker.peksag@gmail.com> | 2016-01-07 17:03:15 (GMT) |
|---|---|---|
| committer | Berker Peksag <berker.peksag@gmail.com> | 2016-01-07 17:03:15 (GMT) |
| commit | bd15bae45afd5d7361eb4cd0ca7df210fe8aaa2d (patch) | |
| tree | fa6a390e836f7f40d53927e6cf20f5f2623b8e97 | |
| parent | d56e67e1166ac9f0fc146f9e525172ef0888b8d1 (diff) | |
| parent | 16fb6748820c72123239c0f326e141a14cf39f85 (diff) | |
| download | cpython-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.py | 2 |
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': |
