mirror of
https://github.com/python/cpython.git
synced 2025-09-26 10:19:53 +00:00
gh-103082: Fix shifted field initialization in instrumentation.c
(GH-103561)
Fix shifted field initialization in instrumentation.c
This commit is contained in:
parent
3e0fec7e07
commit
a4967d9d59
1 changed files with 4 additions and 4 deletions
|
@ -16,14 +16,14 @@
|
||||||
|
|
||||||
static PyObject DISABLE =
|
static PyObject DISABLE =
|
||||||
{
|
{
|
||||||
_PyObject_IMMORTAL_REFCNT,
|
.ob_refcnt = _PyObject_IMMORTAL_REFCNT,
|
||||||
&PyBaseObject_Type
|
.ob_type = &PyBaseObject_Type
|
||||||
};
|
};
|
||||||
|
|
||||||
PyObject _PyInstrumentation_MISSING =
|
PyObject _PyInstrumentation_MISSING =
|
||||||
{
|
{
|
||||||
_PyObject_IMMORTAL_REFCNT,
|
.ob_refcnt = _PyObject_IMMORTAL_REFCNT,
|
||||||
&PyBaseObject_Type
|
.ob_type = &PyBaseObject_Type
|
||||||
};
|
};
|
||||||
|
|
||||||
static const int8_t EVENT_FOR_OPCODE[256] = {
|
static const int8_t EVENT_FOR_OPCODE[256] = {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue