summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorBatuhan Taskaya <batuhan@python.org>2021-07-16 15:43:02 (GMT)
committerGitHub <noreply@github.com>2021-07-16 15:43:02 (GMT)
commit9af34c935185eca497617a216d141c72ffaeae9c (patch)
tree06c965d71e81caaec5193a5220709136b2f5e8d3 /Misc
parent7915c96ffd7ddc5cb6d54015ee4c31255a416892 (diff)
downloadcpython-9af34c935185eca497617a216d141c72ffaeae9c.zip
cpython-9af34c935185eca497617a216d141c72ffaeae9c.tar.gz
cpython-9af34c935185eca497617a216d141c72ffaeae9c.tar.bz2
bpo-20201: variadic arguments support for AC (GH-18609)
Implement support for `*args` in AC, and port `print()` to use it.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/Tools-Demos/2020-02-25-18-22-09.bpo-20291.AyrDiZ.rst1
1 files changed, 1 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Tools-Demos/2020-02-25-18-22-09.bpo-20291.AyrDiZ.rst b/Misc/NEWS.d/next/Tools-Demos/2020-02-25-18-22-09.bpo-20291.AyrDiZ.rst
new file mode 100644
index 0000000..c64c548
--- /dev/null
+++ b/Misc/NEWS.d/next/Tools-Demos/2020-02-25-18-22-09.bpo-20291.AyrDiZ.rst
@@ -0,0 +1 @@
+Added support for variadic positional parameters in Argument Clinic.