We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e1e49d8 commit 9d64ed7Copy full SHA for 9d64ed7
examples/06 Bind Variadic Function/main.c
@@ -28,7 +28,7 @@ static bool my_print(int argc, py_Ref argv) {
28
static bool my_print_kw_dict_apply(py_Ref key, py_Ref value, void *ctx) {
29
const char *sep = (const char *)ctx;
30
if (!py_str(key)) return false;
31
- printf("%s=", py_tostr(py_retval()));
+ printf("%s", py_tostr(py_retval()));
32
if (!py_str(value)) return false;
33
printf("%s%s\n", sep, py_tostr(py_retval()));
34
return true;
0 commit comments