summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorZachary Ware <zachary.ware@gmail.com>2015-04-13 23:22:35 (GMT)
committerZachary Ware <zachary.ware@gmail.com>2015-04-13 23:22:35 (GMT)
commit8ef887ce47421e0e3e9ec0c95735990bb0594ffe (patch)
tree3a547c2984fd7086cc1d7a7840734bf7ae94baff /Misc
parenta6cc551502aac1fd011009abe40686f4647ba6b0 (diff)
downloadcpython-8ef887ce47421e0e3e9ec0c95735990bb0594ffe.zip
cpython-8ef887ce47421e0e3e9ec0c95735990bb0594ffe.tar.gz
cpython-8ef887ce47421e0e3e9ec0c95735990bb0594ffe.tar.bz2
Issue #20586: Argument Clinic now ensures signatures on functions without docstrings.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 79ed545..969da2c 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -156,6 +156,9 @@ Tests
Tools/Demos
-----------
+- Issue #20586: Argument Clinic now ensures that functions without docstrings
+ have signatures.
+
- Issue #23492: Argument Clinic now generates argument parsing code with
PyArg_Parse instead of PyArg_ParseTuple if possible.