Skip to content

Commit

Permalink
pythongh-105927: Limit PyWeakref_GetRef() to limited C API 3.13 (pyth…
Browse files Browse the repository at this point in the history
  • Loading branch information
vstinner authored and adorilson committed Mar 25, 2024
1 parent 84c8175 commit 09ba0c0
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions Include/weakrefobject.h
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,10 @@ PyAPI_FUNC(PyObject *) PyWeakref_NewRef(PyObject *ob,
PyAPI_FUNC(PyObject *) PyWeakref_NewProxy(PyObject *ob,
PyObject *callback);
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);
#endif


#ifndef Py_LIMITED_API
Expand Down

0 comments on commit 09ba0c0

Please sign in to comment.