Skip to content

Commit

Permalink
Fix shifted field initialization in instrumentation.c
Browse files Browse the repository at this point in the history
  • Loading branch information
arhadthedev committed Apr 15, 2023
1 parent 2b6f5c3 commit 286fdc9
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Python/instrumentation.c
Original file line number Diff line number Diff line change
Expand Up @@ -16,14 +16,14 @@

static PyObject DISABLE =
{
_PyObject_IMMORTAL_REFCNT,
&PyBaseObject_Type
.ob_refcnt = _PyObject_IMMORTAL_REFCNT,
.ob_type = &PyBaseObject_Type
};

PyObject _PyInstrumentation_MISSING =
{
_PyObject_IMMORTAL_REFCNT,
&PyBaseObject_Type
.ob_refcnt = _PyObject_IMMORTAL_REFCNT,
.ob_type = &PyBaseObject_Type
};

static const int8_t EVENT_FOR_OPCODE[256] = {
Expand Down

0 comments on commit 286fdc9

Please sign in to comment.