STINNER Victor <vstin...@python.org> added the comment:

> Should `_PyUnicode_EqualToASCIIId()` support comparing two unicode from 
> different interpreter?

Right now, there still many cases where objects are still shared between two 
interpreters:

* None, True, False singletons
* strings from code objects (according to what I saw when I reproduced the 
issue)
* objects from static types: type name (str), subtypes (tuple), MRO (tuple), 
etc.
* etc.

More details in the following issues:

* bpo-40533: [subinterpreters] Don't share Python objects between interpreters
* bpo-40512: [subinterpreters] Meta issue: per-interpreter GIL

----------
nosy: +eric.snow

_______________________________________
Python tracker <rep...@bugs.python.org>
<https://bugs.python.org/issue46006>
_______________________________________
_______________________________________________
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com

Reply via email to