This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author eric.snow
Recipients brett.cannon, eric.snow, grahamd, ncoghlan, serhiy.storchaka, steve.dower
Date 2016-12-29.19:01:37
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <CALFfu7BrWH+XSq31HPoVTVASEuDFmLsMQLSdeUDuzqrPHvhOxA@mail.gmail.com>
In-reply-to <CALFfu7DJu2jOpdkVZkUwv1reELXqsFaiFu5wBARrjnrUpWrnoA@mail.gmail.com>
Content
Interpreter states are in a linked list, so you

can traverse the list to find one by ID.

Exactly.  At first I had added a PyInterpreterState_FindByID() or something
like that.  However, as you noted, I realized it wasn't necessary. :)

WRT weakrefs, we can't use them directly, but I suspect the higher-level
API will need it...

Everything you said about weakrefs sounds good.  We can discuss more when
we get to that high-level API.
History
Date User Action Args
2016-12-29 19:01:37eric.snowsetrecipients: + eric.snow, brett.cannon, ncoghlan, grahamd, serhiy.storchaka, steve.dower
2016-12-29 19:01:37eric.snowlinkissue29102 messages
2016-12-29 19:01:37eric.snowcreate