From c381689d3ea17a91b4a00aae6bfcf68b27538f0f Mon Sep 17 00:00:00 2001 From: blueloveTH Date: Wed, 1 Feb 2023 17:37:53 +0800 Subject: [PATCH] up --- plugins/flutter/src/pocketpy.h | 4 ++-- plugins/godot/godot-cpp | 2 +- src/pocketpy.h | 4 ++-- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/plugins/flutter/src/pocketpy.h b/plugins/flutter/src/pocketpy.h index 2af8f4fc..a4a96a0e 100644 --- a/plugins/flutter/src/pocketpy.h +++ b/plugins/flutter/src/pocketpy.h @@ -6638,7 +6638,7 @@ extern "C" { __EXPORT /// Get a global variable of a virtual machine. /// - /// Return __repr__ of the result. + /// Return `__repr__` of the result. /// If the variable is not found, return `nullptr`. char* pkpy_vm_get_global(VM* vm, const char* name){ auto it = vm->_main->attribs.find(name); @@ -6654,7 +6654,7 @@ extern "C" { __EXPORT /// Evaluate an expression. /// - /// Return __repr__ of the result. + /// Return `__repr__` of the result. /// If there is any error, return `nullptr`. char* pkpy_vm_eval(VM* vm, const char* source){ PyVarOrNull ret = vm->exec(source, "", EVAL_MODE); diff --git a/plugins/godot/godot-cpp b/plugins/godot/godot-cpp index 84bca9a3..c951825d 160000 --- a/plugins/godot/godot-cpp +++ b/plugins/godot/godot-cpp @@ -1 +1 @@ -Subproject commit 84bca9a3b6e86d18fa8df303c7fa80e751960dbe +Subproject commit c951825d2533b000213d57f027569fc08ed7f02a diff --git a/src/pocketpy.h b/src/pocketpy.h index 58d14a6e..f73b2d25 100644 --- a/src/pocketpy.h +++ b/src/pocketpy.h @@ -710,7 +710,7 @@ extern "C" { __EXPORT /// Get a global variable of a virtual machine. /// - /// Return __repr__ of the result. + /// Return `__repr__` of the result. /// If the variable is not found, return `nullptr`. char* pkpy_vm_get_global(VM* vm, const char* name){ auto it = vm->_main->attribs.find(name); @@ -726,7 +726,7 @@ extern "C" { __EXPORT /// Evaluate an expression. /// - /// Return __repr__ of the result. + /// Return `__repr__` of the result. /// If there is any error, return `nullptr`. char* pkpy_vm_eval(VM* vm, const char* source){ PyVarOrNull ret = vm->exec(source, "", EVAL_MODE);