diff options
author | Dong-hee Na <donghee.na@python.org> | 2020-11-01 13:04:35 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-11-01 13:04:35 (GMT) |
commit | 7feb54a6348f6220b27986777786c812f110b53d (patch) | |
tree | ecd5989508efe55fba00b3a8e0d6a0494f894891 | |
parent | d2810054c7ee1b4ce925fc520224b595b53bf4b4 (diff) | |
download | cpython-7feb54a6348f6220b27986777786c812f110b53d.zip cpython-7feb54a6348f6220b27986777786c812f110b53d.tar.gz cpython-7feb54a6348f6220b27986777786c812f110b53d.tar.bz2 |
bpo-37483: Add PyObject_CallOneArg() in the What's New in Python 3.9 (GH-23062)
-rw-r--r-- | Doc/whatsnew/3.9.rst | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Doc/whatsnew/3.9.rst b/Doc/whatsnew/3.9.rst index 1a37f16..a601b16 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 --------------------- |