(self, obj)
| 2272 | |
| 2273 | @command(table_argument=True) |
| 2274 | def json_encode(self, obj): |
| 2275 | pyobj = self.lua.lua2python(obj) |
| 2276 | return json.dumps(pyobj, cls=SplashJSONEncoder) |
| 2277 | |
| 2278 | @command() |
| 2279 | def json_decode(self, s): |
nothing calls this directly
no test coverage detected