vgetargskeywords(): Patch for memory leak identified in bug #119862.
diff --git a/Python/getargs.c b/Python/getargs.c
index b947a0c..cf1c6b7 100644
--- a/Python/getargs.c
+++ b/Python/getargs.c
@@ -1123,6 +1123,7 @@
 				return 0;
 			}
 			converted++;
+			Py_DECREF(item);
 		}
 		else {
 			PyErr_Clear();