mirror of
https://github.com/pocketpy/pocketpy
synced 2025-10-20 03:20:18 +00:00
Update ceval.h
This commit is contained in:
parent
8c8ececc83
commit
7b326b326f
@ -70,10 +70,7 @@ __NEXT_STEP:;
|
||||
TARGET(DUP_TOP) PUSH(TOP()); DISPATCH();
|
||||
TARGET(ROT_TWO) std::swap(TOP(), SECOND()); DISPATCH();
|
||||
TARGET(PRINT_EXPR)
|
||||
if(TOP() != None){
|
||||
_stdout(this, CAST(Str&, py_repr(TOP())));
|
||||
_stdout(this, "\n");
|
||||
}
|
||||
if(TOP() != None) _stdout(this, CAST(Str&, py_repr(TOP())) + "\n");
|
||||
POP();
|
||||
DISPATCH();
|
||||
/*****************************************/
|
||||
|
Loading…
x
Reference in New Issue
Block a user