Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
_remote_debugging.RemoteUnwinder
1 parent 43ff0a1 commit 970baf2Copy full SHA for 970baf2
1 file changed
Modules/_remote_debugging_module.c
@@ -2994,7 +2994,10 @@ static PyType_Slot RemoteUnwinder_slots[] = {
2994
static PyType_Spec RemoteUnwinder_spec = {
2995
.name = "_remote_debugging.RemoteUnwinder",
2996
.basicsize = sizeof(RemoteUnwinderObject),
2997
- .flags = Py_TPFLAGS_DEFAULT,
+ .flags = (
2998
+ Py_TPFLAGS_DEFAULT
2999
+ | Py_TPFLAGS_IMMUTABLETYPE
3000
+ ),
3001
.slots = RemoteUnwinder_slots,
3002
};
3003
0 commit comments