diff options
author | Georg Brandl <georg@python.org> | 2008-12-30 10:15:49 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2008-12-30 10:15:49 (GMT) |
commit | 3bcb0ce922e776a92ae69882abfac65f76a67be0 (patch) | |
tree | d85d8303eb3490b745489de6ab3f1ceb66b914f9 | |
parent | 7cc9755cfb15c41fe841b52aeeff0ba9c7eb1ac8 (diff) | |
download | cpython-3bcb0ce922e776a92ae69882abfac65f76a67be0.zip cpython-3bcb0ce922e776a92ae69882abfac65f76a67be0.tar.gz cpython-3bcb0ce922e776a92ae69882abfac65f76a67be0.tar.bz2 |
#4778: attributes can't be called.
-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 0bf5710..6f4a3f1 100644 --- a/Doc/library/multiprocessing.rst +++ b/Doc/library/multiprocessing.rst @@ -358,7 +358,7 @@ The :mod:`multiprocessing` package mostly replicates the API of the .. attribute:: daemon - The process's daemon flag, a Boolean value. This must be called before + The process's daemon flag, a Boolean value. This must be set before :meth:`start` is called. The initial value is inherited from the creating process. |