Skip to content

Commit d41d8c7

Browse files
Drop references to object sharing.
1 parent c1acf93 commit d41d8c7

1 file changed

Lines changed: 1 addition & 8 deletions

File tree

Doc/library/concurrent.interpreters.rst

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -234,8 +234,7 @@ Interpreter objects
234234

235235
.. method:: prepare_main(ns=None, **kwargs)
236236

237-
Bind "shareable" objects in the interpreter's
238-
:mod:`!__main__` module.
237+
Bind objects in the interpreter's :mod:`!__main__` module.
239238

240239
.. method:: exec(code, /, dedent=True)
241240

@@ -291,9 +290,6 @@ Communicating Between Interpreters
291290
implements the :class:`queue.Queue` interface. The underlying queue
292291
can only be created through :func:`create_queue`.
293292

294-
Cross-interpreter queues support all the same objects as
295-
:meth:`Interpreter.prepare_main`.
296-
297293
.. attribute:: id
298294

299295
(read-only)
@@ -345,6 +341,3 @@ Creating an interpreter and running code in it::
345341

346342
t = interp.call_in_thread(run)
347343
t.join()
348-
349-
350-
.. XXX Explain about object "sharing".

0 commit comments

Comments
 (0)