Skip to content

Commit

Permalink
gh-102304: Temporarily Bump Py_LIMITED_API for 2 New Functions (#104766)
Browse files Browse the repository at this point in the history
Quick and dirty.
  • Loading branch information
ericsnowcurrently authored May 22, 2023
1 parent 4ded2c5 commit 421cbf3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Include/object.h
Original file line number Diff line number Diff line change
Expand Up @@ -590,7 +590,7 @@ you can count such references to the type object.)
extern Py_ssize_t _Py_RefTotal;
# define _Py_INC_REFTOTAL() _Py_RefTotal++
# define _Py_DEC_REFTOTAL() _Py_RefTotal--
# elif !defined(Py_LIMITED_API) || Py_LIMITED_API+0 > 0x030C0000
# elif !defined(Py_LIMITED_API) || Py_LIMITED_API+0 > 0x030D0000
PyAPI_FUNC(void) _Py_IncRefTotal_DO_NOT_USE_THIS(void);
PyAPI_FUNC(void) _Py_DecRefTotal_DO_NOT_USE_THIS(void);
# define _Py_INC_REFTOTAL() _Py_IncRefTotal_DO_NOT_USE_THIS()
Expand Down

0 comments on commit 421cbf3

Please sign in to comment.