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.
1 parent f60bf5f commit 74f2fe6Copy full SHA for 74f2fe6
1 file changed
Python/ceval.c
@@ -1170,7 +1170,7 @@ PyEval_EvalFrameEx(PyFrameObject *f, int throwflag)
1170
assert(PyBytes_Check(co->co_code));
1171
assert(PyBytes_GET_SIZE(co->co_code) <= INT_MAX);
1172
assert(PyBytes_GET_SIZE(co->co_code) % 2 == 0);
1173
- assert(_Py_IS_ALIGNED(PyBytes_AS_STRING(co->co_code), unsigned short));
+ assert(_Py_IS_ALIGNED(PyBytes_AS_STRING(co->co_code), 2));
1174
first_instr = (unsigned short*) PyBytes_AS_STRING(co->co_code);
1175
/*
1176
f->f_lasti refers to the index of the last instruction,
0 commit comments