Skip to content

Commit 421cbf3

Browse files
gh-102304: Temporarily Bump Py_LIMITED_API for 2 New Functions (#104766)
Quick and dirty.
1 parent 4ded2c5 commit 421cbf3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Include/object.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -590,7 +590,7 @@ you can count such references to the type object.)
590590
extern Py_ssize_t _Py_RefTotal;
591591
# define _Py_INC_REFTOTAL() _Py_RefTotal++
592592
# define _Py_DEC_REFTOTAL() _Py_RefTotal--
593-
# elif !defined(Py_LIMITED_API) || Py_LIMITED_API+0 > 0x030C0000
593+
# elif !defined(Py_LIMITED_API) || Py_LIMITED_API+0 > 0x030D0000
594594
PyAPI_FUNC(void) _Py_IncRefTotal_DO_NOT_USE_THIS(void);
595595
PyAPI_FUNC(void) _Py_DecRefTotal_DO_NOT_USE_THIS(void);
596596
# define _Py_INC_REFTOTAL() _Py_IncRefTotal_DO_NOT_USE_THIS()

0 commit comments

Comments
 (0)