diff options
author | R. David Murray <rdmurray@bitdance.com> | 2009-07-01 02:49:10 (GMT) |
---|---|---|
committer | R. David Murray <rdmurray@bitdance.com> | 2009-07-01 02:49:10 (GMT) |
commit | 321afa80ba53503c882bcf18ec2df9e569a35874 (patch) | |
tree | 89ef29119bfe0da968436d273a63ebe73cfe16cb | |
parent | 7e2801d1b5961cd4f94ecc36f707d70bc854fea9 (diff) | |
download | cpython-321afa80ba53503c882bcf18ec2df9e569a35874.zip cpython-321afa80ba53503c882bcf18ec2df9e569a35874.tar.gz cpython-321afa80ba53503c882bcf18ec2df9e569a35874.tar.bz2 |
Make punctuation prettier and break up run-on sentence.
-rw-r--r-- | Doc/library/multiprocessing.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/library/multiprocessing.rst b/Doc/library/multiprocessing.rst index 04828bb..39d0b45 100644 --- a/Doc/library/multiprocessing.rst +++ b/Doc/library/multiprocessing.rst @@ -2107,7 +2107,7 @@ Beware replacing sys.stdin with a "file like object" os.close(sys.stdin.fileno()) - In the :meth:`multiprocessing.Process._bootstrap` method of - this resulted + in the :meth:`multiprocessing.Process._bootstrap` method --- this resulted in issues with processes-in-processes. This has been changed to:: sys.stdin.close() @@ -2116,7 +2116,7 @@ Beware replacing sys.stdin with a "file like object" Which solves the fundamental issue of processes colliding with each other resulting in a bad file descriptor error, but introduces a potential danger to applications which replace :func:`sys.stdin` with a "file-like object" - with output buffering, this danger is that if multiple processes call + with output buffering. This danger is that if multiple processes call :func:`close()` on this file-like object, it could result in the same data being flushed to the object multiple times, resulting in corruption. |