Compare commits

..

No commits in common. "8424d29fb228e108f895b6854e7c1e033ba1217d" and "5d30381e1915c1f3a148ef39e81002984d3951d8" have entirely different histories.

View File

@ -159,9 +159,7 @@ bool py_execo(const void* data, int size, const char* filename, py_Ref module) {
CodeObject__dtor(&co);
return ok;
} else {
bool ok = RuntimeError("bad code object %s: %s", filename, err);
PK_FREE(err);
return ok;
return RuntimeError("bad code object %s: %s", filename, err);
}
}