low-hanging fruit in Python/ - g++ still hates all the enum_kind declarations
in Python/Python-ast.c. Not sure what to do about those.
diff --git a/Python/exceptions.c b/Python/exceptions.c
index b146c97..e5f8f05 100644
--- a/Python/exceptions.c
+++ b/Python/exceptions.c
@@ -893,7 +893,7 @@
if (have_filename)
bufsize += PyString_GET_SIZE(filename);
- buffer = PyMem_MALLOC(bufsize);
+ buffer = (char *)PyMem_MALLOC(bufsize);
if (buffer != NULL) {
if (have_filename && have_lineno)
PyOS_snprintf(buffer, bufsize, "%s (%s, line %ld)",