summaryrefslogtreecommitdiffstats
path: root/Doc/whatsnew
diff options
context:
space:
mode:
authorPablo Galindo <Pablogsal@gmail.com>2019-05-31 18:33:41 (GMT)
committerGitHub <noreply@github.com>2019-05-31 18:33:41 (GMT)
commit545a3b8814dbf2a5391e830d69e796fb1a1d62ec (patch)
tree6205d523dfbd747108fa254d8736e1283e17a746 /Doc/whatsnew
parentc8d5bf6c3fa09b43f6a5ee779d493d251dbcc53c (diff)
downloadcpython-545a3b8814dbf2a5391e830d69e796fb1a1d62ec.zip
cpython-545a3b8814dbf2a5391e830d69e796fb1a1d62ec.tar.gz
cpython-545a3b8814dbf2a5391e830d69e796fb1a1d62ec.tar.bz2
Document changes for PyCode_New regarding PEP570 (GH-13706)
Diffstat (limited to 'Doc/whatsnew')
-rw-r--r--Doc/whatsnew/3.8.rst3
1 files changed, 3 insertions, 0 deletions
diff --git a/Doc/whatsnew/3.8.rst b/Doc/whatsnew/3.8.rst
index 98f0c34..76d0093 100644
--- a/Doc/whatsnew/3.8.rst
+++ b/Doc/whatsnew/3.8.rst
@@ -1278,6 +1278,9 @@ Changes in the C API
(Contributed by Antoine Pitrou in :issue:`32388`.)
+* The :c:func:`PyCode_New` has a new parameter in the second position (*posonlyargcount*)
+ to support :pep:`570`, indicating the number of positional-only arguments.
+
CPython bytecode changes
------------------------