Compare commits

..

1 Commits

Author SHA1 Message Date
Satyabrata Mohanty
02c91d863f
Merge cf47fd21e4c1b285452c2d50c6d86e92ab0b9825 into 52aed673dc2ff65e5346c2cce9389248e8ad876f 2026-02-08 19:50:37 +08:00

View File

@ -5,16 +5,6 @@ label: json
JSON serialization and deserialization module.
This module is not safe. You may not want to use it with untrusted data.
If you need a safe alternative, consider a 3rd-party library like `cjson`.
You can override the json functions with:
```c
py_GlobalRef mod = py_getmodule("json");
py_bindfunc(mod, "loads", _safe_json_loads);
py_bindfunc(mod, "dumps", _safe_json_dumps);
```
#### Source code
:::code source="../../include/typings/json.pyi" :::