Issue #7414: Add missing 'case 'C'' to skipitem() in getargs.c. This
was causing PyArg_ParseTupleAndKeywords(args, kwargs, "|CC", ...) to
fail with a RuntimeError. Thanks Case Van Horsen for tracking down
the source of this error.
diff --git a/Misc/NEWS b/Misc/NEWS
index 93c4653..6a216ed4 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -121,6 +121,9 @@
C-API
-----
+- Issue #7414: 'C' code wasn't being skipped properly (for keyword arguments)
+ in PyArg_ParseTupleAndKeywords.
+
- Issue #Add '%lld' and '%llu' support to PyString_FromFormat(V)
and PyErr_Format, on machines with HAVE_LONG_LONG defined.