2
2
Title: Multiple Interpreters in the Stdlib
3
3
Author: Eric Snow <ericsnowcurrently@gmail.com>
4
4
Discussions-To: https://discuss.python.org/t/pep-554-multiple-interpreters-in-the-stdlib/24855
5
- Status: Draft
5
+ Status: Superseded
6
6
Type: Standards Track
7
7
Content-Type: text/x-rst
8
8
Created: 05-Sep-2017
@@ -13,6 +13,15 @@ Post-History: `07-Sep-2017 <https://mail.python.org/archives/list/python-ideas@p
13
13
`05-Dec-2017 <https://mail.python.org/archives/list/python-dev@python.org/thread/BCSRGAMCYB3NGXNU42U66J56XNZVMQP2/ >`__,
14
14
`04-May-2020 <https://mail.python.org/archives/list/python-dev@python.org/thread/X2KPCSRVBD2QD5GP5IMXXZTGZ46OXD3D/ >`__,
15
15
`14-Mar-2023 <https://discuss.python.org/t/pep-554-multiple-interpreters-in-the-stdlib/24855/2/ >`__,
16
+ `01-Nov-2023 <https://discuss.python.org/t/pep-554-multiple-interpreters-in-the-stdlib/24855/26/ >`__,
17
+ Superseded-By: 734
18
+
19
+
20
+ .. note ::
21
+ This PEP effectively continues in a cleaner form in :pep: `734 `.
22
+ This PEP is kept as-is for the sake of the various sections of
23
+ background information and deferred/rejected ideas that have
24
+ been stripped from :pep: `734 `.
16
25
17
26
18
27
Abstract
@@ -747,7 +756,7 @@ The module provides the following functions::
747
756
748
757
Return True if the object may be "shared" between interpreters.
749
758
This does not necessarily mean that the actual objects will be
750
- shared. Insead , it means that the objects' underlying data will
759
+ shared. Instead , it means that the objects' underlying data will
751
760
be shared in a cross-interpreter way, whether via a proxy, a
752
761
copy, or some other means.
753
762
@@ -927,7 +936,7 @@ Shareable Types
927
936
928
937
An object is "shareable" if its type supports shareable instances.
929
938
The type must implement a new internal protocol, which is used to
930
- convert an object to interpreter-independent data and then coverted
939
+ convert an object to interpreter-independent data and then converted
931
940
back to an object on the other side. Also see
932
941
`is_shareable() <interpreters-is-shareable _>`_ above.
933
942
0 commit comments