Closed stefankoegl closed 7 years ago
I wondered about this when reading the docs: https://python-json-pointer.readthedocs.io/en/latest/tutorial.html
>>> from jsonpointer import resolve_pointer
>>> obj = {"foo": {"anArray": [ {"prop": 44}], "another prop": {"baz": "A string" }}}
>>> resolve_pointer(obj, '/foo/another%20prop') == obj['foo']['another prop']
True
It seems like this was fixed and urlencoding is not required, do the docs need updating?
As pointed out by @mithrandi in stefankoegl/python-json-patch#63:
My response within the referenced issue