Update pocketpy.h

This commit is contained in:
blueloveTH 2022-11-13 20:22:26 +08:00
parent d03d168b8c
commit fc6f61ad3d

View File

@ -40,10 +40,11 @@ void __initializeBuiltinFunctions(VM* _vm) {
#undef BIND_NUM_LOGICAL_OPT #undef BIND_NUM_LOGICAL_OPT
_vm->bindBuiltinFunc("print", [](VM* vm, PyVarList args) { _vm->bindBuiltinFunc("print", [](VM* vm, PyVarList args) {
_StrStream ss;
for (auto& arg : args){ for (auto& arg : args){
_Str s = vm->PyStr_AS_C(vm->asStr(arg)) + " "; ss << vm->PyStr_AS_C(vm->asStr(arg)) << " ";
vm->_stdout(vm, s.c_str());
} }
vm->_stdout(ss.str());
vm->_stdout(vm, "\n"); vm->_stdout(vm, "\n");
return vm->None; return vm->None;
}); });