瀏覽代碼

Update pocketpy.h

blueloveTH 3 年之前
父節點
當前提交
fc6f61ad3d
共有 1 個文件被更改,包括 3 次插入2 次删除
  1. 3 2
      src/pocketpy.h

+ 3 - 2
src/pocketpy.h

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