diff options
author | Jeroen Demeyer <J.Demeyer@UGent.be> | 2019-07-24 12:02:49 (GMT) |
---|---|---|
committer | Inada Naoki <songofacandy@gmail.com> | 2019-07-24 12:02:49 (GMT) |
commit | 151b91dfd21a100ecb1eba9e293c0a8695bf3bf5 (patch) | |
tree | 7813d7f5302e1181f1f19d7d39883e7b0523f24b /Misc | |
parent | e95ac20103437d8099fb91cd4468ab030852f3b7 (diff) | |
download | cpython-151b91dfd21a100ecb1eba9e293c0a8695bf3bf5.zip cpython-151b91dfd21a100ecb1eba9e293c0a8695bf3bf5.tar.gz cpython-151b91dfd21a100ecb1eba9e293c0a8695bf3bf5.tar.bz2 |
bpo-29548: deprecate PyEval_Call* functions (GH-14804)
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS.d/next/C API/2019-07-17-09-50-50.bpo-29548.5wIptQ.rst | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/C API/2019-07-17-09-50-50.bpo-29548.5wIptQ.rst b/Misc/NEWS.d/next/C API/2019-07-17-09-50-50.bpo-29548.5wIptQ.rst new file mode 100644 index 0000000..e740919 --- /dev/null +++ b/Misc/NEWS.d/next/C API/2019-07-17-09-50-50.bpo-29548.5wIptQ.rst @@ -0,0 +1,3 @@ +The functions ``PyEval_CallObject``, ``PyEval_CallFunction``, +``PyEval_CallMethod`` and ``PyEval_CallObjectWithKeywords`` are deprecated. +Use :c:func:`PyObject_Call` and its variants instead. |