Description
Bug report
Bug description:
Hi Python maintainers!
I noticed something weird when using subinterpreters, while converting an Enum to string I get an unexpected result. This occurs in Python 3.12 and 3.13.
Here's an script to reproduce it:
import _xxsubinterpreters as interpreters
script = """from enum import _simple_enum, IntEnum
@_simple_enum(IntEnum)
class MyEnum:
DATA = 1
print(str(MyEnum.DATA))
"""
exec(script)
# Output: 1
interp_id = interpreters.create(isolated=False)
interpreters.run_string(interp_id, script)
# Output: <MyEnum.DATA: 1>, Expected: 1
In all python versions previous to 3.12 this prints "1" two times, on newer versions I get <MyEnum.DATA: 1>
when running inside a subinterpreter. For some reason, the __str__
function being used is different on new Python versions.
I also noticed that the function pointed by __str__
is different inside and outside the subinterpreter.
Outside:
...
print(MyEnum.DATA.__str__)
# Output: <method-wrapper '__repr__' of MyEnum object at 0x7f9a09a2e910>
Inside:
...
print(MyEnum.DATA.__str__)
# Output: <method-wrapper '__str__' of MyEnum object at 0x7f9a099a5e90>
NOTE: I'm creating subinterpreters passing the
isolated=False
flag, which uses the Legacy init config.
I first noticed the error on MacOS, then reproduced using Docker with various Python versions.
I hope this is enough to get to the source of the issue.
Appreciate all your work and effort on building Python, thank you!
CPython versions tested on:
3.8, 3.9, 3.10, 3.11, 3.12, 3.13
Operating systems tested on:
Linux, macOS
Linked PRs
- gh-117482: Cleaning up tp_dict for static builtin types in subinterpreters #117660
- gh-117482: Fix Builtin Types Slot Wrappers #121602
- [3.13] gh-117482: Fix Builtin Types Slot Wrappers (gh-121602) #121630
- [3.12] gh-117482: Fix Builtin Types Slot Wrappers (gh-121602) #121632
- gh-117482: Fix Builtin Types Slot Wrappers When Embedded #121636
- [3.12] gh-117482: Simplify the Fix For Builtin Types Slot Wrappers #121862
- gh-117482: Simplify the Fix For Builtin Types Slot Wrappers #121882
- [3.13] gh-117482: Simplify the Fix For Builtin Types Slot Wrappers #121932
- gh-117482: Expand Tests for Slot Wrappers of Inherited Slots of Static Builtin Types #122192
- [3.13] gh-117482: Expand Tests for Slot Wrappers of Inherited Slots of Static Builtin Types (gh-122192) #122195
- [3.12] gh-117482: Expand Tests for Slot Wrappers of Inherited Slots of Static Builtin Types (gh-122192) #122197
- [3.12] gh-117482: Simplify the Fix For Builtin Types Slot Wrappers #122241
- gh-117482: Fix the Slot Wrapper Inheritance Tests #122248
- [3.13] gh-117482: Fix the Slot Wrapper Inheritance Tests #122249
- [3.12] gh-117482: Fix the Slot Wrapper Inheritance Tests #122250
- gh-117482: Simplify the Fix For Builtin Types Slot Wrappers #122865
- gh-117482: Preserve the Mapping Between Type Slot Name and Attributes #122866
- gh-117482: Make the Slot Wrapper Inheritance Tests Much More Thorough #122867
Metadata
Metadata
Assignees
Labels
Projects
Status