@@ -262,14 +262,6 @@ that only one process prints to standard output at a time::
262262Without using the lock output from the different processes is liable to get all
263263mixed up.
264264
265- .. note ::
266-
267- Some of this package's functionality requires a functioning shared semaphore
268- implementation on the host operating system. Without one, the
269- :mod: `multiprocessing.synchronize ` module will be disabled, and attempts to
270- import it will result in an :exc: `ImportError `. See
271- :issue: `3770 ` for additional information.
272-
273265
274266Sharing state between processes
275267~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
@@ -808,6 +800,14 @@ For an example of the usage of queues for interprocess communication see
808800 immediately without waiting to flush enqueued data to the
809801 underlying pipe, and you don't care about lost data.
810802
803+ .. note ::
804+
805+ This class's functionality requires a functioning shared semaphore
806+ implementation on the host operating system. Without one, the
807+ functionality in this class will be disabled, and attempts to
808+ instantiate a :class: `Queue ` will result in an :exc: `ImportError `. See
809+ :issue: `3770 ` for additional information. The same holds true for any
810+ of the specialized queue types listed below.
811811
812812.. class :: SimpleQueue()
813813
@@ -1183,6 +1183,14 @@ object -- see :ref:`multiprocessing-managers`.
11831183 This differs from the behaviour of :mod: `threading ` where SIGINT will be
11841184 ignored while the equivalent blocking calls are in progress.
11851185
1186+ .. note ::
1187+
1188+ Some of this package's functionality requires a functioning shared semaphore
1189+ implementation on the host operating system. Without one, the
1190+ :mod: `multiprocessing.synchronize ` module will be disabled, and attempts to
1191+ import it will result in an :exc: `ImportError `. See
1192+ :issue: `3770 ` for additional information.
1193+
11861194
11871195Shared :mod: `ctypes ` Objects
11881196~~~~~~~~~~~~~~~~~~~~~~~~~~~~
0 commit comments