Skip to content

Commit

Permalink
Update mod.c
Browse files Browse the repository at this point in the history
  • Loading branch information
ZeroIntensity authored Mar 7, 2024
1 parent 29b58c6 commit 9025222
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/mod.c
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ static inline PyObject* Py_NewRef(PyObject* ob) {
#if PY_MAJOR_VERSION != 3
#error "Python 3 is needed to build"
#endif
#if PY_MINOR_VERSION == 11
#if PY_MINOR_VERSION >= 11
#define GET_CODE(frame) PyFrame_GetCode(frame);
#define GET_LOCALS(frame) PyFrame_GetLocals(frame);
#else
Expand Down

0 comments on commit 9025222

Please sign in to comment.