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 d774ab7 commit 5bf02deCopy full SHA for 5bf02de
1 file changed
Lib/test/test_sqlite3/test_dbapi.py
@@ -1412,13 +1412,13 @@ def test_blob_set_empty_slice(self):
1412
1413
def test_blob_set_empty_slice_wrong_type(self):
1414
# Assigning a non-buffer object to an empty slice must raise TypeError
1415
- # even when the slice length is zero (gh-150449).
+ # even when the slice length is zero.
1416
with self.assertRaises(TypeError):
1417
self.blob[5:5] = None
1418
1419
def test_blob_set_empty_slice_wrong_size(self):
1420
# Assigning a non-empty bytes object to an empty slice must raise
1421
- # IndexError because the sizes do not match (gh-150449).
+ # IndexError because the sizes do not match.
1422
with self.assertRaisesRegex(IndexError, "wrong size"):
1423
self.blob[5:5] = b"123"
1424
0 commit comments