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 961472e commit a5bc2bbCopy full SHA for a5bc2bb
Lib/test/test_json/test_scanstring.py
@@ -138,7 +138,9 @@ def test_bad_escapes(self):
138
with self.assertRaises(self.JSONDecodeError, msg=s):
139
scanstring(s, 1, True)
140
141
- @unittest.skip("TODO: RUSTPYTHON")
+ @unittest.skip("TODO: RUSTPYTHON, "
142
+ "TypeError: Expected type 'str', not 'bytes'; "
143
+ "TypeError: expected string")
144
def test_overflow(self):
145
with self.assertRaises(OverflowError):
146
self.json.decoder.scanstring(b"xxx", sys.maxsize+1)
0 commit comments