diff options
author | Eric Snow <ericsnowcurrently@gmail.com> | 2023-05-22 23:03:17 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-05-22 23:03:17 (GMT) |
commit | 421cbf39fba94c4031c87d3c3e9bb8a8a4ca54a8 (patch) | |
tree | 636413afd9bcea64cf67455ecd0cb3363075d460 | |
parent | 4ded2c5e9c92cecb759c306470b4d18c99b391bf (diff) | |
download | cpython-421cbf39fba94c4031c87d3c3e9bb8a8a4ca54a8.zip cpython-421cbf39fba94c4031c87d3c3e9bb8a8a4ca54a8.tar.gz cpython-421cbf39fba94c4031c87d3c3e9bb8a8a4ca54a8.tar.bz2 |
gh-102304: Temporarily Bump Py_LIMITED_API for 2 New Functions (#104766)
Quick and dirty.
-rw-r--r-- | Include/object.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Include/object.h b/Include/object.h index 81aeb2d..c4fe2f8 100644 --- a/Include/object.h +++ b/Include/object.h @@ -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() |