D | jsonmodify.py | 23 def follow_path(obj, path): argument 24 cur = obj 37 def ensure_path(obj, path): argument 38 cur = obj 50 def apply(self, obj, val): argument 51 cur, key = ensure_path(obj, self) 56 def apply(self, obj, val): argument 57 cur, key = follow_path(obj, self) 63 def apply(self, obj): argument 64 cur, key = follow_path(obj, self) [all …]
|