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 8587c66 commit 8819807Copy full SHA for 8819807
Lib/json/decoder.py
@@ -58,7 +58,7 @@ def __reduce__(self):
58
}
59
60
def _decode_uXXXX(s, pos, _m=HEXDIGITS.match):
61
- if match := _m(s, end):
+ if match := _m(s, pos):
62
try:
63
return int(match.group(), 16)
64
except ValueError:
0 commit comments