summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorXtreak <tirkarthi@users.noreply.github.com>2018-12-21 14:45:13 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2018-12-21 14:45:13 (GMT)
commit6326278e8a3a4b6ac41a74effa63331b1b9fdf5c (patch)
tree5ea5e20db776d8f017fb237a6194ef08c00e9140 /Misc
parent3e8f962e63c2f929604443531a9a3aced242f3e8 (diff)
downloadcpython-6326278e8a3a4b6ac41a74effa63331b1b9fdf5c.zip
cpython-6326278e8a3a4b6ac41a74effa63331b1b9fdf5c.tar.gz
cpython-6326278e8a3a4b6ac41a74effa63331b1b9fdf5c.tar.bz2
bpo-34193: Fix pluralization in getargs.c and test cases. (GH-8438)
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/C API/2018-07-24-11-57-35.bpo-34193.M6ch1Q.rst2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/C API/2018-07-24-11-57-35.bpo-34193.M6ch1Q.rst b/Misc/NEWS.d/next/C API/2018-07-24-11-57-35.bpo-34193.M6ch1Q.rst
new file mode 100644
index 0000000..da2a611
--- /dev/null
+++ b/Misc/NEWS.d/next/C API/2018-07-24-11-57-35.bpo-34193.M6ch1Q.rst
@@ -0,0 +1,2 @@
+Fix pluralization in TypeError messages in getargs.c and typeobject.c:
+'1 argument' instead of '1 arguments' and '1 element' instead of '1 elements'.