Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b3c4b98 commit d7d3f37Copy full SHA for d7d3f37
1 file changed
Doc/library/multiprocessing.rst
@@ -659,6 +659,13 @@ For an example of the usage of queues for interprocess communication see
659
the background thread from being joined automatically when the process
660
exits -- see :meth:`join_thread`.
661
662
+ A better name for this method might be
663
+ ``allow_exit_without_flush()``. It is likely to cause enqueued
664
+ data to lost, and you almost certainly will not need to use it.
665
+ It is really only there if you need the current process to exit
666
+ immediately without waiting to flush enqueued data to the
667
+ underlying pipe, and you don't care about lost data.
668
+
669
670
.. class:: SimpleQueue()
671
0 commit comments