mirror of
https://github.com/python/cpython.git
synced 2025-08-25 11:15:02 +00:00
[3.9] bpo-40514: Remove --with-experimental-isolated-subinterpreters in 3.9 (GH-20228)
Remove --with-experimental-isolated-subinterpreters configure option in Python 3.9: the experiment continues in the master branch, but it's no longer needed in 3.9.
This commit is contained in:
parent
b008445a7b
commit
9512ad74b0
21 changed files with 7 additions and 236 deletions
|
@ -198,10 +198,7 @@ extern "C" {
|
|||
# define OVERALLOCATE_FACTOR 4
|
||||
#endif
|
||||
|
||||
/* bpo-40521: Interned strings are shared by all interpreters. */
|
||||
#ifndef EXPERIMENTAL_ISOLATED_SUBINTERPRETERS
|
||||
# define INTERNED_STRINGS
|
||||
#endif
|
||||
#define INTERNED_STRINGS
|
||||
|
||||
/* This dictionary holds all interned unicode strings. Note that references
|
||||
to strings in this dictionary are *not* counted in the string's ob_refcnt.
|
||||
|
@ -288,10 +285,7 @@ unicode_decode_utf8(const char *s, Py_ssize_t size,
|
|||
/* List of static strings. */
|
||||
static _Py_Identifier *static_strings = NULL;
|
||||
|
||||
/* bpo-40521: Latin1 singletons are shared by all interpreters. */
|
||||
#ifndef EXPERIMENTAL_ISOLATED_SUBINTERPRETERS
|
||||
# define LATIN1_SINGLETONS
|
||||
#endif
|
||||
#define LATIN1_SINGLETONS
|
||||
|
||||
#ifdef LATIN1_SINGLETONS
|
||||
/* Single character Unicode strings in the Latin-1 range are being
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue