compile doesn't accept code objects
diff --git a/Python/bltinmodule.c b/Python/bltinmodule.c
index fac64bc..6f52a9a 100644
--- a/Python/bltinmodule.c
+++ b/Python/bltinmodule.c
@@ -657,7 +657,7 @@
         goto finally;
     }
 
-    str = source_as_string(cmd, "compile", "string, bytes, AST or code", &cf);
+    str = source_as_string(cmd, "compile", "string, bytes or AST", &cf);
     if (str == NULL)
         goto error;