Get this to compile again if Py_USING_UNICODE is not defined.
com_error() is static in Python/compile.c.
diff --git a/Objects/stringobject.c b/Objects/stringobject.c
index bf1c58e..2626d3c 100644
--- a/Objects/stringobject.c
+++ b/Objects/stringobject.c
@@ -619,7 +619,7 @@
 		case 'U':
 		case 'N':
 			if (unicode) {
-				com_error(com, PyExc_ValueError,
+				PyErr_SetString(PyExc_ValueError,
 					  "Unicode escapes not legal "
 					  "when Unicode disabled");
 				goto failed;