From: Dong-hee Na Date: Sun, 1 Nov 2020 13:04:35 +0000 (+0900) Subject: bpo-37483: Add PyObject_CallOneArg() in the What's New in Python 3.9 (GH-23062) X-Git-Tag: v3.10.0a2~20 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=7feb54a6348f6220b27986777786c812f110b53d;p=thirdparty%2FPython%2Fcpython.git bpo-37483: Add PyObject_CallOneArg() in the What's New in Python 3.9 (GH-23062) --- diff --git a/Doc/whatsnew/3.9.rst b/Doc/whatsnew/3.9.rst index 1a37f16ea2b0..a601b16f1c60 100644 --- a/Doc/whatsnew/3.9.rst +++ b/Doc/whatsnew/3.9.rst @@ -1289,6 +1289,10 @@ New Features representation of a function-like object. (Patch by Jeroen Demeyer in :issue:`37645`.) +* Added :c:func:`PyObject_CallOneArg` for calling an object with one + positional argument + (Patch by Jeroen Demeyer in :issue:`37483`.) + Porting to Python 3.9 ---------------------