mirror of
https://github.com/python/cpython.git
synced 2025-07-07 19:35:27 +00:00
gh-105927: Limit PyWeakref_GetRef() to limited C API 3.13 (#117091)
This commit is contained in:
parent
8ad8898420
commit
104602a607
1 changed files with 3 additions and 0 deletions
|
@ -28,7 +28,10 @@ PyAPI_FUNC(PyObject *) PyWeakref_NewRef(PyObject *ob,
|
||||||
PyAPI_FUNC(PyObject *) PyWeakref_NewProxy(PyObject *ob,
|
PyAPI_FUNC(PyObject *) PyWeakref_NewProxy(PyObject *ob,
|
||||||
PyObject *callback);
|
PyObject *callback);
|
||||||
Py_DEPRECATED(3.13) PyAPI_FUNC(PyObject *) PyWeakref_GetObject(PyObject *ref);
|
Py_DEPRECATED(3.13) PyAPI_FUNC(PyObject *) PyWeakref_GetObject(PyObject *ref);
|
||||||
|
|
||||||
|
#if !defined(Py_LIMITED_API) || Py_LIMITED_API+0 >= 0x030D0000
|
||||||
PyAPI_FUNC(int) PyWeakref_GetRef(PyObject *ref, PyObject **pobj);
|
PyAPI_FUNC(int) PyWeakref_GetRef(PyObject *ref, PyObject **pobj);
|
||||||
|
#endif
|
||||||
|
|
||||||
|
|
||||||
#ifndef Py_LIMITED_API
|
#ifndef Py_LIMITED_API
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue