diff options
| author | Ezio Melotti <ezio.melotti@gmail.com> | 2012-09-14 06:32:35 +0300 |
|---|---|---|
| committer | Ezio Melotti <ezio.melotti@gmail.com> | 2012-09-14 06:32:35 +0300 |
| commit | e0add764688a3f3237749e0c2830b669d2c76ca0 (patch) | |
| tree | f69c0c5a605892fccf92fb7f25396dfcf2572231 /Doc/library/multiprocessing.rst | |
| parent | 56f37aa965e794046dad62ddef2cb63e59e4f357 (diff) | |
| download | cpython-git-e0add764688a3f3237749e0c2830b669d2c76ca0.tar.gz | |
#15831: document multiple signatures on different lines. Patch by Chris Jerdonek.
Diffstat (limited to 'Doc/library/multiprocessing.rst')
| -rw-r--r-- | Doc/library/multiprocessing.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/multiprocessing.rst b/Doc/library/multiprocessing.rst index 18302a792c..4271fc2597 100644 --- a/Doc/library/multiprocessing.rst +++ b/Doc/library/multiprocessing.rst @@ -298,7 +298,7 @@ The :mod:`multiprocessing` package mostly replicates the API of the :class:`Process` and exceptions ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -.. class:: Process([group[, target[, name[, args[, kwargs]]]]]) +.. class:: Process(group=None, target=None, name=None, args=(), kwargs={}) Process objects represent activity that is run in a separate process. The :class:`Process` class has equivalents of all the methods of |
