We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent db861fb commit 56a06e5Copy full SHA for 56a06e5
jsonpointer.py
@@ -49,6 +49,7 @@
49
try:
50
from urllib import unquote
51
from itertools import izip
52
+ str = unicode
53
except ImportError: # Python 3
54
from urllib.parse import unquote
55
izip = zip
tests.py
@@ -61,6 +61,7 @@ def test_round_trip(self):
61
"/k\"l",
62
"/ ",
63
"/m~0n",
64
+ u'/\xee',
65
]
66
for path in paths:
67
ptr = JsonPointer(path)
0 commit comments