release v0.2.2
This commit is contained in:
@@ -348,7 +348,7 @@ PycRef<ASTNode> BuildFromCode(PycRef<PycCode> code, PycModule* mod)
|
||||
// If destination is a:
|
||||
// LOAD_CONST '__pyarmor_exit_N__'
|
||||
// Then change JUMP_FORWARD to RETURN_VALUE
|
||||
const char* code_bytes = code->code()->value();
|
||||
auto code_bytes = (const unsigned char*)code->code()->value();
|
||||
for (int i = 0; i < 10; i += 2) {
|
||||
if (pos + offs + i + 1 >= code->code()->length())
|
||||
break;
|
||||
|
||||
@@ -23,7 +23,7 @@
|
||||
|
||||
#include "ASTree.h"
|
||||
|
||||
const char* VERSION = "v0.2.1+";
|
||||
const char* VERSION = "v0.2.2";
|
||||
|
||||
#ifdef _WIN32
|
||||
|
||||
|
||||
Reference in New Issue
Block a user