This patch hopefully fixes the problem with "es#" and "es" in
PyArg_ParseTupleAndKeywords() and closes bug #113807.
diff --git a/Python/getargs.c b/Python/getargs.c
index 0823515..3b73e41 100644
--- a/Python/getargs.c
+++ b/Python/getargs.c
@@ -967,6 +967,8 @@
 			message = format;
 			break;
 		}
+		else if (c == 'e')
+			; /* Pass */
 		else if (isalpha(c))
 			max++;
 		else if (c == '|')