Skip to content

Commit

Permalink
Add base compatibility to python 3.12.
Browse files Browse the repository at this point in the history
  • Loading branch information
viferga committed Jul 23, 2024
1 parent ffe0b97 commit 1845a51
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions source/loaders/py_loader/source/py_loader_impl.c
Original file line number Diff line number Diff line change
Expand Up @@ -283,6 +283,9 @@ static PyTypeObject py_loader_impl_dict_type = {
0, /* tp_version_tag */
0, /* tp_finalize */
0, /* tp_vectorcall */
#if PY_MAJOR_VERSION == 3 && PY_MINOR_VERSION >= 12
0 /* tp_watched */
#endif
};

/* Implements: if __name__ == "__main__": */
Expand Down

0 comments on commit 1845a51

Please sign in to comment.