py_json_dumps method

bool py_json_dumps(
  1. py_Ref val,
  2. int indent
)

json module *************/ /// Python equivalent to json.dumps(val).

Implementation

bool py_json_dumps(
  py_Ref val,
  int indent,
) {
  return _py_json_dumps(
    val,
    indent,
  );
}