File tree 2 files changed +13
-1
lines changed 2 files changed +13
-1
lines changed Original file line number Diff line number Diff line change @@ -2139,6 +2139,15 @@ const Py_am_send
2139
2139
added 3.10
2140
2140
2141
2141
2142
+ # New GC control functions in Py3.10 (https://bugs.python.org/issue28254)
2143
+
2144
+ function PyGC_Disable
2145
+ added 3.10
2146
+ function PyGC_Enable
2147
+ added 3.10
2148
+ function PyGC_IsEnabled
2149
+ added 3.10
2150
+
2151
+
2142
2152
# (Detailed comments aren't really needed for further entries: from here on
2143
2153
# we can use version control logs.)
2144
-
Original file line number Diff line number Diff line change @@ -271,6 +271,9 @@ EXPORT_FUNC(PyFrame_GetCode)
271
271
EXPORT_FUNC (PyFrame_GetLineNumber )
272
272
EXPORT_FUNC (PyFrozenSet_New )
273
273
EXPORT_FUNC (PyGC_Collect )
274
+ EXPORT_FUNC (PyGC_Disable )
275
+ EXPORT_FUNC (PyGC_Enable )
276
+ EXPORT_FUNC (PyGC_IsEnabled )
274
277
EXPORT_FUNC (PyGILState_Ensure )
275
278
EXPORT_FUNC (PyGILState_GetThisThreadState )
276
279
EXPORT_FUNC (PyGILState_Release )
You can’t perform that action at this time.
0 commit comments